/* ==========================================================================
   1. GENEL AYARLAR VE YAZI TİPLERİ
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #faf9f6; /* Görseldeki kırık beyaz / krem arkaplan */
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .serif-text {
    font-family: 'Playfair Display', serif;
    color: #1a237e; /* Klasik Lacivert */
    font-weight: normal;
}

/* ==========================================================================
   2. HEADER (SOL MENÜ - ORTA LOGO - SAĞ SOSYAL MEDYA & DİL)
   ========================================================================== */
.top-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
}

.nav-left { justify-self: start; }
.logo-container { justify-self: center; margin: 0; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 20px; }

/* Menü Tasarımı */
.main-menu ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    gap: 25px; 
    align-items: center;
}

.main-menu ul li a {
    text-decoration: none; 
    color: #333; 
    font-size: 14px; 
    font-weight: 500; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    transition: color 0.3s ease;
}

.main-menu ul li a:hover { color: #1a237e; }

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 15px;
    padding-right: 20px;
    border-right: 1px solid #ddd; /* İkonlar ile dil seçicisi arasına ince çizgi */
}

.social-icons a {
    color: #1a237e;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff9800; /* Üzerine gelince turuncu/sarımsı bir ton */
}

/* Şık Dil Seçim Linkleri (TR EN RU IT DE) */
.custom-lang-selector { 
    display: flex; 
    gap: 8px; 
}

.custom-lang-selector a {
    text-decoration: none;
    background: transparent; 
    border: 1px solid #ddd; 
    color: #555; 
    padding: 6px 10px; 
    font-size: 13px; 
    font-weight: bold; 
    border-radius: 4px; 
    transition: all 0.3s ease;
}

.custom-lang-selector a:hover, 
.custom-lang-selector a.active-lang { 
    background: #1a237e; 
    color: #fff; 
    border-color: #1a237e; 
}

/* Google Translate'in Kendi Araçlarını Gizleme */
body { top: 0 !important; }
.skiptranslate iframe { display: none !important; }

/* ==========================================================================
   3. HERO SLIDER & VİDEO ALANI (OKLAR EKLİ)
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    background-color: #000;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-media {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

.hero-content {
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    color: #fff;
    font-size: 56px;
    margin: 0 0 10px 0;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    margin: 0;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

/* Slider İleri / Geri Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
    border-radius: 50%;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    color: #1a237e;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* ==========================================================================
   4. GİRİŞ YAZISI & ORTA ALAN
   ========================================================================== */
.intro-section {
    max-width: 800px;
    margin: 70px auto;
    text-align: center;
    padding: 0 20px;
}

.intro-section h2 { font-size: 28px; margin-bottom: 25px; letter-spacing: 1.5px; }
.intro-section p { font-size: 16px; line-height: 1.9; color: #555; margin-bottom: 35px; }

/* Orta Banner Alanı */
.middle-banner {
    background-color: #ffffff; /* Arkaplandan ayrışması için saf beyaz */
    padding: 60px 20px;
    margin: 60px 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.middle-content { max-width: 900px; margin: auto; }
.middle-content h2 { font-size: 32px; margin-bottom: 20px; color: #1a237e; }
.middle-content p { font-size: 17px; line-height: 1.8; color: #555; }

/* ==========================================================================
   5. ÖRTÜŞEN (OVERLAPPING) VİTRİN BLOKLARI (RESİMDEKİ GİBİ)
   ========================================================================== */
.content-wrapper {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.cova-block {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

/* Yön 1: Görsel Sağda, Kutu Solda */
.cova-block.img-right {
    justify-content: flex-end;
}
.cova-block.img-right .cova-text-box {
    left: 5%; 
}

/* Yön 2: Görsel Solda, Kutu Sağda */
.cova-block.img-left {
    justify-content: flex-start;
}
.cova-block.img-left .cova-text-box {
    right: 5%; 
}

/* Görsel Alanı */
.cova-image {
    width: 65%; /* Görsel ekranın büyük kısmını kaplar */
    font-size: 0;
}

.cova-image img {
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 550px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Hafif derinlik */
}

/* Örtüşen Metin Kutusu */
.cova-text-box {
    position: absolute; /* Görselin üzerine binmesini sağlar */
    width: 40%;
    max-width: 450px;
    background: #ffffff;
    padding: 60px 40px;
    box-sizing: border-box;
    text-align: center;
    z-index: 2;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06); /* Beyaz kutunun gölgesi */
}

.cova-text-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 25px;
}

.cova-text-box p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.9;
    color: #1a237e; 
    text-transform: uppercase; /* Görseldeki gibi BÜYÜK HARF */
    letter-spacing: 1px;
    margin: 0;
}

/* ==========================================================================
   6. İÇ SAYFALAR (Hakkımızda, İletişim vb.)
   ========================================================================== */
.page-content-wrapper { max-width: 900px; margin: 60px auto; padding: 0 20px; min-height: 45vh; }
.page-title { font-size: 42px; border-bottom: 2px solid #eaeaea; padding-bottom: 15px; margin-bottom: 35px; text-align: center; }
.page-text { font-size: 16px; line-height: 1.9; color: #444; }

/* ==========================================================================
   7. ALT BİLGİ (FOOTER)
   ========================================================================== */
.site-footer { background-color: #ffffff; padding: 50px 20px; text-align: center; border-top: 1px solid #eaeaea; margin-top: 50px; }
.site-footer p { color: #777; font-size: 14px; margin: 0; line-height: 1.6; }

/* ==========================================================================
   8. MOBİL UYUMLULUK (TELEFON VE TABLETLER İÇİN)
   ========================================================================== */
@media (max-width: 950px) {
    /* Header'ı telefonlarda alt alta diz */
    .top-nav {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

    .social-icons {
        border-right: none;
        padding-right: 0;
    }
    
    .main-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Slider yazıları ve butonları mobilde küçülür */
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 24px; }
    .slider-btn { padding: 10px 15px; font-size: 18px; }

    /* Vitrin blokları mobil cihazlarda üst üste binmez, normal alt alta dizilir */
    .cova-block { 
        flex-direction: column; 
        justify-content: center !important; 
        margin-bottom: 60px; 
    }
    
    .cova-image { width: 100%; }
    
    .cova-text-box {
        position: relative; /* Üst üste binmeyi iptal et */
        width: 90%;
        left: 0 !important; right: 0 !important;
        margin-top: -50px; /* Görselin biraz üstüne çıkması için negatif margin */
        padding: 40px 20px;
    }
}