/* Temel Ayarlar ve Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Senin belirlediğin temel renkler */
    --fzk-navy: rgb(13, 41, 87);     /* Primary: Lacivert */
    --fzk-gold: rgb(197, 158, 79);   /* Warning: Altın Sarısı */

    --text-dark: #222222;
    --bg-white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    color: var(--text-dark);
    scroll-padding-top: 85px;
}

/* --- BOOTSTRAP RENK EZMELERİ (OVERRIDE) --- */
/* Mavi (Primary) renkleri Lacivert yapıyoruz */
.bg-primary { background-color: var(--fzk-navy) !important; }
.text-primary { color: var(--fzk-navy) !important; }
.btn-primary {
    background-color: var(--fzk-navy) !important;
    border-color: var(--fzk-navy) !important;
}

/* Sarı (Warning) renkleri Altın Sarısı yapıyoruz */
.bg-warning { background-color: var(--fzk-gold) !important; }
.text-warning { color: var(--fzk-gold) !important; }
.border-warning { border-color: var(--fzk-gold) !important; }

/* Buton Genel Ayarları ve Border-Radius (Hap Şekli) */
.btn {
    border-radius: 50px !important; /* Kusursuz hap (pill) şekli için 50px kullanıldı */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Altın Sarısı Buton Hover Efekti */
.btn-warning {
    background-color: var(--fzk-gold) !important;
    border-color: var(--fzk-gold) !important;
    color: #000 !important; /* Yazı rengi siyah */
}
.btn-warning:hover {
    background-color: rgb(180, 140, 60) !important; /* Biraz daha koyu altın sarısı */
    border-color: rgb(180, 140, 60) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(197, 158, 79, 0.4);
}

/* --- MENÜ (NAVBAR) AYARLARI --- */
.navbar {
    background-color: var(--bg-white) !important;
    box-shadow: 0 8px 25px rgb(13 41 87 / 55%) !important;
}

/* Menü Linkleri - Normalde Siyah */
.nav-item .nav-link {
    position: relative;
    color: #000 !important;
    font-weight: 500;
    padding: 8px 5px !important;
    transition: color 0.3s ease;
}

/* Menü Hover Animasyonu - Üzerine gelince Altın Sarısı */
.nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--fzk-gold);
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: var(--fzk-gold) !important;
}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
    width: 100%;
}

/* --- VİDEO ARKA PLAN VE TAM EKRAN HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    /* Menü yüksekliğini (yaklaşık 76px) çıkararak tam ekrana oturtuyoruz */
    height: calc(100vh - 76px);
    min-height: 500px;
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Videonun oranı bozulmadan ekranı kaplamasını sağlar */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 41, 87, 0.6); /* Yazıların okunması için lacivert saydam perde */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2; /* Yazıları ve butonu videonun ve perdenin en üstüne alır */
}

/* --- EFEKTLER VE KARTLAR --- */
.section-title {
    border-color: var(--fzk-gold) !important;
}

.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(13, 41, 87, 0.15) !important;
}

/* Form İnputları */
.form-control {
    border-radius: 15px;
}

.form-control:focus {
    border-color: var(--fzk-navy);
    box-shadow: 0 0 0 0.25rem rgba(13, 41, 87, 0.2);
}
