/* GENEL AYARLAR (LIGHT MODE) */
:root {
    --ana-renk: #ffffff; /* Beyaz Zemin */
    --ikinci-renk: #f8f9fa; /* Açık Gri (Kartlar için) */
    --metin-renk: #212529; /* Koyu Gri Yazı */
    --altin: #d4af37; /* Altın Sarısı */
    --beyaz: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--ana-renk);
    color: var(--metin-renk); /* Yazılar artık koyu renk */
    overflow-x: hidden;
}

/* NAVBAR (BEYAZ) */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 50px;
    /* Logo zaten beyaz zemine uygun olduğu için ek arka plana gerek yok */
}

/* Navbar linklerini koyu yapmalıyız */
.nav-link {
    color: #333 !important; 
    font-weight: 600;
    margin-left: 20px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--altin) !important;
}

/* HERO SECTION */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Hero'da görsel olduğu için yazı beyaz kalmalı, üstüne koyu perde çekiyoruz */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/site/hero-section.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Hero içindeki yazılar beyaz kalmalı çünkü arkada resim var */
.hero-content {
    color: #fff; 
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-custom {
    background-color: var(--altin);
    border: 2px solid var(--altin);
    color: #fff;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--altin);
    border: 2px solid var(--altin);
}

/* BEYAZ TEMA İÇİN BUTON GÜNCELLEMESİ (Hero'daki İletişim butonu) */
.btn-outline-light {
    border-color: #fff;
    color: #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/* GENEL BAŞLIKLAR (KOYU RENK) */
.section-title h2 {
    color: #000; /* Başlıklar siyah */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.5rem;
}

.section-title::after {
    background: var(--altin);
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 20px auto 0;
}

section {
    padding: 100px 0;
}

/* NAVBAR AKTİF DURUMU (Scrollspy) */
/* Kullanıcı hangi bölümdeyse o menü elemanı altın sarısı olur */
.navbar-nav .nav-link.active {
    color: var(--altin) !important;
    position: relative;
}

/* Aktif olan linkin altına ufak bir çizgi ekleyelim */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--altin);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* PROFİL RESMİ HOVER EFEKTİ */
/* Resmin üzerine gelince hafif büyüsün */
.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.02);
}

/* BUTON YUKARI HAREKET EFEKTİ */
.hover-top {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
}

/* SECTION PADDING AYARI */
.section-padding {
    padding: 80px 0;
}