:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #45B7AF;
    --light-bg: #f8f9fa;
    --dark-bg: #2d3436;
    --text-color: #2d3436;
    --light-text: #636e72;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    padding-top: 76px;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/pattern.svg') repeat;
    opacity: 0.1;
}

.hero-section h1 {
    color: white;
    line-height: 1.2;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-section .lead {
    color: white;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    color: var(--primary-color) !important;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card img {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* How it Works */
.how-it-works {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.step-box {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.step-box:hover {
    transform: translateY(-10px);
    color: white;
}

.step-box:hover::before {
    opacity: 1;
}

.step-box:hover i,
.step-box:hover h4,
.step-box:hover p {
    color: white;
}

.step-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-box h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Form Elements */
.form-select, .form-control {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.1);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .search-box {
        margin: 2rem auto;
        padding: 1.5rem !important;
    }
    
    .step-box {
        margin-bottom: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 4rem 0;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

footer p, footer li {
    color: #b2bec3;
}

footer a {
    color: #b2bec3 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* Logo Stilleri */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-symbol {
    width: 60px;
    height: 60px;
    position: relative;
}

.logo-symbol::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    border-radius: 15px;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.logo-symbol i {
    position: relative;
    color: white;
    font-size: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.logo-container:hover .logo-symbol::before {
    transform: rotate(0deg);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-symbol {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
}

/* Popüler Ustalar */
.popular-masters {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.popular-master-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.popular-master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.popular-master-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.popular-master-card .card-body {
    padding: 1.5rem;
}

.popular-master-card .rating {
    display: flex;
    align-items: center;
}

.popular-master-card .badge {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
}

.popular-master-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.popular-master-card .card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.popular-master-card .card-text i {
    width: 20px;
    color: #3498db;
}

.popular-master-card .btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    transition: transform 0.2s ease;
}

.popular-master-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Hızlı Arama Formu */
.quick-search {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-search .form-select-lg {
    height: 60px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    padding-left: 1rem;
    background-position: right 1rem center;
}

.quick-search .form-select-lg:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.quick-search .btn-lg {
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    font-size: 1.25rem;
}

.quick-search .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Filtreleme Bölümü */
.card.shadow-sm {
    border: none;
    transition: box-shadow 0.3s ease;
}

.card.shadow-sm:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-outline-secondary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
    transform: translateY(-2px);
}

/* Usta Kartları */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.rating .badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #2c3e50;
}

.card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.card-text i {
    width: 20px;
    color: #3498db;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-buttons .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.hero-buttons .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.hero-buttons .btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

/* Hero Section Butonları */
.hero-section .btn {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-section .btn:active {
    transform: translateY(1px);
}

.hero-section .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
}

.hero-section .btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
}

.hero-section .btn-outline-primary {
    border: 2px solid #007bff;
    background: transparent;
}

.hero-section .btn-outline-primary:hover {
    background: #007bff;
    color: white;
}

.hero-section .btn i {
    margin-right: 8px;
    font-size: 1.1em;
    vertical-align: middle;
} 