﻿/*
    Bu dosya, ARTIK SADECE ana sayfaya özgü olan
    Hero, Services, About gibi bölümlerin
    stillerini içermektedir.
*/

/* Ana sayfanın kendisine özel gövde stili */
.home-page-body {
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero Section */
.home-hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.home-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-hero-logo {
    max-width: 450px; /* Logonun alabileceği en büyük genişlik. */
    width: 80%; /* Ekran küçüldüğünde daha esnek olmasını sağlar. */
    height: auto; /* Oranı korur. */
    margin-bottom: 1.5rem; /* Logo ile alttaki alt başlık arasına boşluk koyar. */
}

.home-hero .home-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.home-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

    .home-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* Ana sayfadaki container ve section title'lar için home- ön eki korunuyor */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: 1px;
}

/* Services Section */
.home-services {
    padding: 80px 0;
    background: white;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.home-service-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fafafa;
}

    .home-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: #000;
    }

    .home-service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #000;
        font-weight: 400;
    }

    .home-service-card p {
        color: #666;
        line-height: 1.8;
    }

.home-service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    margin-top: 1rem;
}

/* Diğer home- ile başlayan stilleriniz burada kalmaya devam edecek... */
/* About, Appointment vb. */
.home-about {
    padding: 80px 0;
    background: #f8f8f8;
}

.home-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #000;
    letter-spacing: 1px;
}

.home-about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.home-about-image {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

/* Appointment Section */
.home-appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    text-align: center;
}

    .home-appointment h2 {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }

    .home-appointment p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

.home-appointment-button {
    display: inline-block;
    background: white;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

    .home-appointment-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255,255,255,0.3);
    }


/* Sadece Ana Sayfayı Etkileyen Mobil Ayarları */
@media (max-width: 768px) {
    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero .home-subtitle {
        font-size: 1.1rem;
    }

    .home-section-title {
        font-size: 2rem;
    }

    .home-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-about-text h2 {
        font-size: 2rem;
    }

    .home-services-grid {
        gap: 2rem;
    }
}
