/* --------------------------------- */
/* 1. GENEL AYARLAR VE RENKLER */
/* --------------------------------- */

/* Logonuzdan aldığımız ana renkler */
:root {
    --ana-yesil: #8dc63f; /* Logonuzdaki açık yeşil */
    --koyu-yesil: #004F2D; /* Logonuzdaki koyu yeşil (benzeri) */
    --koyu-renk: #333;
    --acik-renk: #f8f9fa; /* Hafif kırık beyaz */
}

/* Sayfanın tamamı için yumuşak kaydırma ve temel yazı tipi */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif; /* Google Font'u kullan */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--koyu-renk);
}

/* Ana başlıklar */
h1, h2, h3 {
    font-weight: 700; /* Kalın */
}

h2 {
    font-size: 2.5rem;
    color: var(--koyu-yesil);
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem; 
    color: var(--koyu-yesil); 
}

/* Bölümler arası boşlukları yöneten ana 'container' */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------------- */
/* 2. HEADER (NAVİGASYON) - GÜNCELLENDİ */
/* --------------------------------- */
.navbar {
    background-color: var(--koyu-yesil); 
    border-bottom: 1px solid var(--koyu-yesil); 
    padding: 10px 0;
    position: fixed; /* Ekranda sabit kalır */
    width: 100%;
    top: 0;
    z-index: 1000; /* Diğer her şeyin üstünde */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
}

.navbar .container {
    display: flex;
    justify-content: space-between; /* Logo sola, (menü+ikonlar) sağa */
    align-items: center; /* Dikeyde ortala */
}

.navbar .logo img {
    height: 50px; /* Logo boyutu */
}

/* YENİ: Menü ve Sosyal ikonları yan yana tutan sarmalayıcı */
.nav-right {
    display: flex;
    align-items: center; /* Menü ve ikonları dikeyde hizala */
}

.navbar .menu a {
    color: #ffffff; /* Yazılar beyaz */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar .menu a:hover {
    color: var(--ana-yesil);
}

/* YENİ: Sosyal Medya İkonları */
.social-icons {
    margin-left: 25px; /* Menü ile arasına boşluk */
    display: flex;
    gap: 18px; /* İkonlar arası boşluk */
}

.social-icons a {
    color: #ffffff; /* İkon rengi beyaz */
    font-size: 1.4rem; /* İkon boyutu */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--ana-yesil); /* Üzerine gelince açık yeşil */
    transform: scale(1.15); /* Hafif büyüme efekti */
}


/* --------------------------------- */
/* 3. BÖLÜMLER (SECTIONS) */
/* --------------------------------- */

/* Tüm bölümler için genel stil (sabit menü için üst boşluk) */
.content-section {
    padding: 100px 0;
}

.alt-bg {
    background-color: var(--acik-renk);
}

/* BÖLÜM: ANA SAYFA (HERO) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--ana-yesil);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--koyu-yesil);
}


/* BÖLÜM: NEDEN BİZ? (3 KUTU) */
.uc-kutu-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

.kutu {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kutu:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.kutu-ikon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: var(--ana-yesil); 
    color: white;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kutu h3 {
    margin-bottom: 15px;
}

.kutu p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* BÖLÜM: VİZYON & MİSYON (Alt Alta) */
.vm-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vm-item {
    background: var(--acik-renk); 
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.vm-item:last-child {
    margin-bottom: 0;
}

.vm-ikon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: var(--ana-yesil); 
    color: white; 
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-item p {
    color: #555;
    font-size: 1rem; 
    line-height: 1.7;
}


/* BÖLÜM: İLETİŞİM */
#iletisim {
    text-align: center;
}

.iletisim-bilgileri {
    font-size: 1.2rem;
    margin-top: 30px;
}
.iletisim-bilgileri p {
    margin: 10px 0;
}

/* --------------------------------- */
/* 4. FOOTER (SAYFA ALTI) */
/* --------------------------------- */
.footer {
    background-color: var(--koyu-renk);
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* --------------------------------- */
/* 5. WHATSAPP BUTTONU */
/* --------------------------------- */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


/* --------------------------------- */
/* 6. MOBİL UYUMLULUK (Responsive) - GÜNCELLENDİ */
/* --------------------------------- */
@media (max-width: 768px) {
    /* Menü küçülecek */
    .navbar .container {
        flex-direction: column;
    }
    
    /* YENİ: Mobilde menü ve ikonlar alt alta gelsin */
    .nav-right {
        flex-direction: column;
        align-items: center; /* Her şeyi ortala */
    }
    
    .navbar .menu {
        margin-top: 10px;
    }
    .navbar .menu a {
        padding: 5px 8px;
        font-size: 0.9rem;
    }

    /* YENİ: Mobilde sosyal ikonlar */
    .social-icons {
        margin-left: 0;
        margin-top: 15px; /* Menü ile arasına boşluk */
        gap: 25px; /* Mobilde aralarını biraz açalım */
        font-size: 1.3rem;
    }
    
    /* Ana sayfa başlığı küçülecek */
    .hero h1 {
        font-size: 2.5rem;
    }

    /* KUTULAR MOBİLDE ALT ALTA GELSİN */
    .uc-kutu-container {
        flex-direction: column;
    }

    /* Başlıklar küçülecek */
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }

    /* VİZYON/MİSYON KUTULARININ İÇ BOŞLUĞU */
    .vm-item {
        padding: 30px 25px;
    }

    /* WhatsApp butonu mobilde biraz küçülsün */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}