/* --- GENEL SIFIRLAMA VE TEMEL STİLLER --- */
:root {
    --color-primary: #1e8449; /* Koyu Yeşil */
    --color-secondary: #f39c12; /* Turuncu/Vurgu Rengi */
    --color-background: #f8f9fa;
    --color-text: #333;
    --font-heading: 'Georgia', serif;
    --font-body: 'Helvetica Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- BAŞLIK VE KAPSAYICI STİLLER (GENEL) --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* H3 stilini önceki haline geri döndürdük */
h3 { font-size: 1.5rem; color: var(--color-primary); border-bottom: 2px solid #eee; padding-bottom: 5px; }


/* --- CTA BUTONU STİLLERİ (AYNI KALDI) --- */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-align: center;
}

.primary-cta {
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.primary-cta:hover {
    background-color: #e67e22;
}

.secondary-cta {
    background-color: var(--color-primary);
    color: #fff;
}

.secondary-cta:hover {
    background-color: #1a7140; 
}


/* --- ÜST BAR (LOGO VE İLETİŞİM) (AYNI KALDI) --- */
.top-bar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.logo-area .logo {
    height: 80px;
    margin-right: 10px;
}

.contact-area .contact-phone {
    color: var(--color-secondary);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
}


/* --- HERO SECTION (HEADER) - BANNER STİLİ --- */
.hero-section {
    /* Banner Rengi (Pastel Yeşil Tonu) aynı kaldı */
    background: linear-gradient(rgba(30, 132, 73, 0.4), rgba(30, 132, 73, 0.4)), url('placeholder-gorsel.jpg') no-repeat center center/cover;
    min-height: 70vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
}

.hero-content {
    max-width: 800px;
}

/* --- YENİ BÖLÜM: FOTOĞRAF GALERİSİ STİLLERİ --- */
/* --- YENİ BÖLÜM: FOTOĞRAF GALERİSİ STİLLERİ --- */
.photo-gallery {
    padding: 40px 0; /* Sayfadaki boşluğu artırdık */
    background-color: var(--color-background); /* Arka plan rengi ekledik */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.gallery-container {
    /* PC'de yan yana hizalamayı garanti eder */
    display: flex;
    justify-content: space-between;
    align-items: center; /* Görselleri dikeyde hizalar */
    gap: 20px; /* Görseller arası boşluk */
}

.gallery-img {
    /* PC için boyut kontrolü ve eşitlik garantisi */
    width: 32%; /* 3 görsel + boşluk için toplamı %100'den az tutar */
    max-width: 400px; /* PC'de görsellerin çok büyük olmasını engeller */
    
    /* İstenen 6-7cm orana yakın sabit yükseklik */
    height: 220px; 
    
    object-fit: cover; /* Görselin alanı tam kaplamasını ve kırpılmasını sağlar */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02); 
}

/* Mobilde görsellerin alt alta inmesi (Bu kısım aynı kalmalı) */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        align-items: center;
    }
    .gallery-img {
        width: 90%; 
        height: 200px; 
        margin-bottom: 20px;
    }
}

/* Mobilde görsellerin alt alta inmesi */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        align-items: center;
    }
    .gallery-img {
        width: 90%; /* Mobilde tam genişlik */
        height: 200px; /* Mobilde daha az yer kaplasın */
        margin-bottom: 20px;
    }
}
/* TİPOGRAFİ DÜZELTMESİ: H1 BÜYÜKLÜĞÜ ÖNCEKİ HALİNE DÖNDÜ */
.hero-content h1 {
    font-size: 3.2rem; /* Bir önceki versiyona yaklaştırıldı */
    color: #fff; 
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

/* TİPOGRAFİ DÜZELTMESİ: H2 BÜYÜKLÜĞÜ ÖNCEKİ HALİNE DÖNDÜ */
.hero-content h2 { 
    font-size: 2rem; /* Bir önceki versiyona yaklaştırıldı */
    color: #f7f7f7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-content .subheadline {
    /* Bir önceki versiyonun genel alt başlık fontu */
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

/* TİPOGRAFİ DÜZELTMESİ: TAGLINE BÜYÜKLÜĞÜ ÖNCEKİ HALİNE DÖNDÜ */
.hero-content .tagline {
    font-size: 1.8rem; /* Bir önceki versiyona yaklaştırıldı */
    font-weight: bold;
    color: #fff; 
    margin: 20px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}


/* --- GENEL BÖLÜM STİLLERİ (AYNI KALDI) --- */
section {
    padding: 60px 0;
}

.intro-text {
    text-align: center;
    color: var(--color-text);
    font-weight: 300;
    font-size: 1.4rem;
    margin-bottom: 40px;
    padding: 0 5%;
}


/* --- ÖZELLİKLER BÖLÜMÜ: YAN YANA DÜZENLEME (AYNI KALDI) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--color-background);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.feature-item ul li {
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}
.feature-item ul li::before {
    content: "✅"; 
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    top: 0;
}


/* --- NEDEN BİZ (WHY CHOOSE US) --- (AYNI KALDI) */
.why-choose-us {
    background-color: #fff;
    text-align: center;
}

.reasons-list {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.reasons-list p {
    font-size: 1.2rem;
    font-weight: bold;
    flex: 1 1 300px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.cta-box {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 40px;
    margin-top: 40px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-box h4 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* --- FOOTER DÜZENLEMESİ (AYNI KALDI) --- */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: left;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact p, .footer-info p {
    margin-bottom: 8px;
}

/* --- RESPONSIVE DÜZENLEMELER (AYNI KALDI) --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content h2 { font-size: 1.8rem; }
    .reasons-list { gap: 15px; }
    .reasons-list p { flex: 1 1 100%; }
    
    .cta-button {
        display: block; 
        width: 100%;
    }

    .nav-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-area {
        margin-top: 10px;
    }
    .footer-content {
        flex-direction: column;
    }
}