/* ==========================================
   RESET & TEMEL AYARLAR
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b0b;
    color: #f5f5f5;
    overflow-x: hidden; /* Sağ tarafa taşmaları ve kaymaları kesin olarak engeller */
}

body {
    overflow-x: hidden;
    background-color: #0b0b0b;
}

:root {
    --gold: #D4AF37;
    --gold-hover: #F3E5AB;
    --bg-dark: #0b0b0b;
    --bg-card: #121212;
    --text-muted: #aaaaaa;
    --font-serif: 'Cinzel', serif;
}

/* ==========================================
   HEADER & NAVIGASYON (MASAÜSTÜ)
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(11,11,11,0.95), rgba(11,11,11,0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 4px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--gold);
    }

.mobile-nav-toggle {
    display: none; /* Masaüstünde gizler */
}

.mobile-only {
    display: none !important;
}

/* ==========================================
   HERO SECTION (GİRİŞ EKRANI)
   ========================================== */
/* ==========================================
   HERO SLIDER (LÜKS GİRİŞ SLAYTI)
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0b0b0b;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    /* Tüm slaytların ortak taban stili */
    .hero-slider .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 2s ease;
        transform: scale(1.05); /* Yumuşak yakınlaşma hissi için başlangıç boyutu */
    }

        /* Aktif olan slaytın geçiş efekti */
        .hero-slider .slide.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1); /* Slayt aktifleştiğinde yavaşça orijinal boyutuna oturur */
        }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(11,11,11,0.4) 0%, rgba(11,11,11,0.75) 100%);
    z-index: 2; /* Görsellerin karartma filtresi görsellerin üstünde olmalı */
}

.hero-content {
    position: relative;
    z-index: 3; /* Metinlerin slayttan ve karartmadan etkilenmemesi için en üst katman */
    max-width: 900px;
    padding: 0 20px;
    margin-top: 60px;
}

/* Slayt Noktaları (Dots) Stili */
.slider-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

    .slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.4s ease;
        border: 1px solid transparent;
    }

        .slider-dots .dot:hover {
            background-color: var(--gold);
        }

        .slider-dots .dot.active {
            background-color: var(--gold);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
        }
    .video-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.65); /* Fotoğrafı karartarak yazıları öne çıkarır */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 60px; /* Üst menünün altına girmesini önler */
}

.hero-subtitle {
    font-size: 11px;
    letter-spacing: 8px;
    color: var(--gold);
    display: block;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* ==========================================
   LÜKS BUTONLAR
   ========================================== */
.btn-gold-outline {
    border: 1px solid var(--gold);
    color: #fff;
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
}

    .btn-gold-outline:hover {
        background-color: var(--gold);
        color: var(--bg-dark);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

.btn-gold-solid {
    background-color: var(--gold) !important;
    color: var(--bg-dark) !important;
    border: 1px solid var(--gold);
    padding: 16px 45px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

    .btn-gold-solid:hover {
        background-color: var(--gold-hover) !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    }

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    z-index: 3;
}

.mouse-dot {
    display: block;
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    margin: 6px auto;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ==========================================
   HİKAYEMİZ (STORY) BÖLÜMÜ
   ========================================== */
.story-section {
    padding: 140px 0;
    background-color: #0b0b0b;
    width: 100%;
    position: relative;
    display: block;
    clear: both;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.story-text-block {
    flex: 1;
    text-align: left;
}

.section-subtitle {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
}

.story-paragraph {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

    .story-paragraph.italic {
        font-family: var(--font-serif);
        font-size: 15px;
        color: var(--gold);
        border-left: 2px solid var(--gold);
        padding-left: 20px;
        margin-top: 35px;
    }

.story-image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image-wrapper {
    width: 100%;
    max-width: 500px;
    height: 480px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px;
    background-color: #121212;
}

    .story-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ==========================================
   %100 MOBİL VE TABLET UYUM KURALLARI
   ========================================== */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        margin-top: 15px;
    }

    /* Mobil Hamburger Menü Tetikleyici */
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        background: transparent;
        border: none;
        color: var(--gold);
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        letter-spacing: 2px;
        gap: 10px;
        z-index: 1100;
    }

    .toggle-bars {
        display: block;
        width: 20px;
        height: 2px;
        background-color: var(--gold);
        position: relative;
        transition: transform 0.3s ease;
    }

        .toggle-bars::before, .toggle-bars::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--gold);
            left: 0;
            transition: transform 0.3s ease, top 0.3s ease;
        }

        .toggle-bars::before {
            top: -6px;
        }

        .toggle-bars::after {
            top: 6px;
        }

    .toggle-active .toggle-bars {
        background-color: transparent;
    }

        .toggle-active .toggle-bars::before {
            transform: rotate(45deg);
            top: 0;
        }

        .toggle-active .toggle-bars::after {
            transform: rotate(-45deg);
            top: 0;
        }

    /* Mobilde Sağdan Açılan Panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1050;
    }

        .nav-menu.nav-open {
            right: 0;
        }

        .nav-menu ul {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

    .nav-link {
        font-size: 16px;
        letter-spacing: 4px;
    }

    /* Hero Mobil Düzenlemeleri */
    .hero-title {
        font-size: 34px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 5px;
    }

    /* Story Section Mobil Düzenlemeleri */
    .story-section {
        padding: 80px 0;
    }

    .story-container {
        flex-direction: column; /* Alt alta güvenli dizilim */
        gap: 45px;
        padding: 0 20px;
    }

    .story-text-block {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .story-paragraph.italic {
        border-left: none;
        border-top: 1px solid var(--gold);
        border-bottom: 1px solid var(--gold);
        padding: 15px 0;
        margin-top: 25px;
    }

    .story-image-block {
        width: 100%;
    }

    .story-image-wrapper {
        width: 100%;
        height: 350px;
    }
}



/* ==========================================
   LÜKS MENÜ VE BUTON STİLLERİ (KESİN ÇÖZÜM)
   ========================================== */
.menu-section {
    padding: 120px 0;
    background-color: #0b0b0b;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    width: 100%;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Kategori Sekme Alanı */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

    /* Tarayıcı varsayılan buton görünümünü tamamen sıfırlayan lüks stil */
    .menu-tabs .tab-btn {
        background: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        color: #aaaaaa; /* Pasif gri ton */
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 3px;
        padding: 10px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .menu-tabs .tab-btn:hover {
            color: #fff;
        }

        /* Aktif olan sekmenin altın rengi ve alt çizgisi */
        .menu-tabs .tab-btn.active {
            color: var(--gold, #d4af37) !important;
            font-weight: 600;
        }

            .menu-tabs .tab-btn.active::after {
                content: '';
                position: absolute;
                bottom: -16px;
                left: 0;
                width: 100%;
                height: 2px;
                background-color: var(--gold, #d4af37);
            }

/* Panellerin Gizlenme/Gösterilme Mantığı */
.menu-category-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

    .menu-category-panel.active {
        display: grid !important; /* JS tetiklediğinde grid olarak açılacak */
        opacity: 1;
        transform: translateY(0);
    }

/* Gösterişli Devasa Görsel Grid Düzeni */
.menu-luxury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Her Bir Büyük Yemek Kartı */
.menu-luxury-card {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* Karartma Katmanı */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.3) 60%, rgba(11, 11, 11, 0) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

/* Yemek İsmi ve Fiyat Satırı */
.card-meta {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
    transition: border-color 0.4s ease;
}

.item-name {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1.5px;
    margin: 0;
}

.item-price {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 22px;
    color: var(--gold, #d4af37);
    font-weight: 500;
}

/* Hover Efektleri */
.menu-luxury-card:hover {
    transform: scale(1.02);
    border-color: var(--gold, #d4af37);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

    .menu-luxury-card:hover .card-meta {
        border-color: var(--gold, #d4af37);
    }

/* MOBİL TASARIM */
@media (max-width: 768px) {
    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        border-bottom: none;
    }

        .menu-tabs .tab-btn.active::after {
            display: none;
        }

        .menu-tabs .tab-btn {
            width: 100%;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.1) !important;
            background-color: #121212 !important;
        }

            .menu-tabs .tab-btn.active {
                border-color: var(--gold, #d4af37) !important;
            }

    .menu-luxury-grid {
        grid-template-columns: 1fr;
    }

    .menu-luxury-card {
        height: 280px;
        padding: 25px;
    }
}


/* ==========================================
   EKSİKSİZ ATMOSFER SLIDER & MOBİL UYUMLULUK
   ========================================== */
.atmosphere-section {
    padding: 100px 0;
    background-color: #0b0b0b;
    width: 100%;
    overflow: hidden; /* Taşmaları kesinlikle engeller */
}

.atmosphere-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.atmosphere-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Slaytın Sınır Alanı */
.atmosphere-slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Kaydıran Ana Şerit */
.atmosphere-slider-track {
    display: flex;
    gap: 30px; /* Görseller arası lüks boşluk */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

/* Masaüstü standart resim boyutları (3'lü yerleşim hissi için) */
.atmosphere-item {
    width: calc((1200px - 80px) / 3); /* Grid genişliğine tam uyum */
    height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

    .atmosphere-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .atmosphere-item:hover img {
        transform: scale(1.05);
    }

    .atmosphere-item:hover {
        border-color: var(--gold, #d4af37);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

/* Navigasyon Noktaları (Dots) */
.atmosphere-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

    .atmosphere-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .atmosphere-dots .dot.active {
            background-color: var(--gold, #d4af37);
            transform: scale(1.3);
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }

.lightbox-prompt {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    color: #888;
    margin-top: 25px;
}

/* ==========================================
   LIGHTBOX OVERLAY (TAM EKRAN BÜYÜTME)
   ========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .lightbox-overlay.active {
        display: flex;
        opacity: 1;
    }

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

    .lightbox-close:hover {
        color: var(--gold, #d4af37);
    }

/* ==========================================
   KESİN MOBİL VE TABLET UYUMLULUK AYARLARI
   ========================================== */
@media (max-width: 991px) {
    .atmosphere-item {
        width: calc((100vw - 60px) / 2); /* Tabletlerde yan yana 2 resim görünür */
        height: 320px;
    }
}

@media (max-width: 768px) {
    .atmosphere-slider-track {
        gap: 15px; /* Mobilde araları biraz daraltalım */
    }

    .atmosphere-item {
        /* Ekranın genişliğinden paddingleri düşerek tam genişlik veriyoruz */
        width: calc(100vw - 40px) !important;
        height: 280px; /* Mobilde resimlerin dikey ezilmesini/üst üste binmesini önleyen sabit yükseklik */
        flex-shrink: 0; /* Resimlerin daralmasını engeller */
    }

    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }
}


/* ==========================================
   HİKAYEMİZ (ABOUT) BÖLÜMÜ STİLLERİ
   ========================================== */
.about-section {
    padding: 140px 0;
    background-color: #0b0b0b;
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 80px; /* Görsel ve metin arası lüks boşluk */
}

/* Sol Görsel Sütunu */
.about-image-column {
    flex: 1;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 15px; /* Altın çerçeve efekti */
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: all 0.6s ease;
}

.about-image-wrapper:hover .about-img {
    filter: brightness(1);
}

/* Görsel Üzerindeki Altın Rozet */
.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #121212;
    border: 1px solid var(--gold, #d4af37);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.badge-year {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--gold, #d4af37);
    font-weight: 700;
    letter-spacing: 2px;
}

.badge-text {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
    white-space: nowrap;
}

/* Sağ İçerik Sütunu */
.about-content-column {
    flex: 1;
}

.about-content {
    padding-left: 20px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold, #d4af37);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--gold, #d4af37);
    margin-bottom: 35px;
}

.about-lead {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.about-text {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Şef İmzası ve İsim Alanı */
.about-signature-area {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.chef-name {
    font-size: 18px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.chef-title {
    font-size: 12px;
    color: var(--gold, #d4af37);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================
   RESPONSIVE (MOBİL UYUMLULUK) AYARLARI
   ========================================== */
@media (max-width: 991px) {
    .about-row {
        flex-direction: column;
        gap: 60px;
    }

    .about-image-column, .about-content-column {
        width: 100%;
    }

    .about-image-wrapper {
        height: 400px;
    }

    .about-image-badge {
        bottom: -20px;
        right: 10px;
        padding: 15px;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .section-divider {
        margin: 0 auto 35px;
    }
}

/* ==========================================
   GELİŞMİŞ ÇİFT PANELLİ LIGHTBOX STİLLERİ
   ========================================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 6, 0.98);
}

    .lightbox-overlay.active {
        display: block;
    }

/* Kapatma Butonu */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 100002;
    transition: color 0.3s ease;
}

    .lightbox-close:hover {
        color: #d4af37;
    }

/* İçerik Taşıyıcı Yerleşimi */
.adv-lightbox-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

/* --- SOL PANEL: BÜYÜK SLIDER --- */
.adv-lightbox-left {
    flex: 4;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.adv-main-image-wrapper {
    max-width: 85%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Navigasyon Okları */
.adv-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 100001;
}

    .adv-nav-btn:hover {
        background: #d4af37;
        color: #000000;
        border-color: #d4af37;
    }

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* --- SAĞ PANEL: DİKEY KÜÇÜK RESİM SÜTUNU --- */
.adv-lightbox-right {
    flex: 1;
    height: 100%;
    background-color: #0d0d0d;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto; /* Resimler dikeyde taşarsa kaydırma çubuğu açılır */
}

/* Küçük Resim Kartları */
.adv-thumb-item {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 3px;
    opacity: 0.4;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .adv-thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .adv-thumb-item:hover {
        opacity: 0.8;
    }

    /* Seçili/Aktif Olan Küçük Resmin Şık Altın Çerçevesi */
    .adv-thumb-item.active {
        border-color: #d4af37;
        opacity: 1;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

/* Sağ Panel İnce Premium Scrollbar */
.adv-lightbox-right::-webkit-scrollbar {
    width: 5px;
}

.adv-lightbox-right::-webkit-scrollbar-track {
    background: #0d0d0d;
}

.adv-lightbox-right::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 3px;
}

    .adv-lightbox-right::-webkit-scrollbar-thumb:hover {
        background: #d4af37;
    }

/* ==========================================
   YENİ: ABOUT ÖZELLİKLER & SAYAÇ STİLLERİ
   ========================================== */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

.feature-item:hover .feature-icon {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: scale(1.05);
}

.feature-text h4 {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 400;
}

.feature-text p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 45px;
}

.stat-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.4s ease;
}

    .stat-card:hover {
        border-color: rgba(212, 175, 55, 0.2);
        background-color: #161616;
        transform: translateY(-3px);
    }

.stat-number {
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 11px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ==========================================
   MOBİL VE TABLET RESPONSIVE DÜZENLEME
   ========================================== */
@media (max-width: 991px) {
    .adv-lightbox-content {
        flex-direction: column;
    }

    .adv-lightbox-left {
        flex: 3;
        padding: 20px;
    }

    .adv-main-image-wrapper {
        max-width: 95%;
    }

    .adv-lightbox-right {
        flex: 1;
        width: 100%;
        flex-direction: row; /* Mobilde dikey yerine yatay sıralanır */
        overflow-x: auto;
        overflow-y: hidden;
        height: 110px;
        padding: 15px;
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .adv-thumb-item {
        width: 100px;
        height: 100%;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item {
        text-align: left;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }
}


/* ==========================================
   REZERVASYON (RESERVATION) BÖLÜMÜ STİLLERİ
   ========================================== */
.reservation-section {
    padding: 120px 0;
    background-color: #080808; /* Biraz daha derin bir siyah */
    width: 100%;
    position: relative;
}

.reservation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Form ve Bilgi Kartı Paneli */
.reservation-card {
    display: flex;
    background-color: #111111;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    min-height: 550px;
}

/* Sol Bilgi Tarafı */
.reservation-info-side {
    flex: 1;
    padding: 60px;
    background-image: linear-gradient(rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.95));
    border-right: 1px solid rgba(212, 175, 55, 0.05);
}

.reservation-lead {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Saat Planlaması */
.booking-hours {
    margin-bottom: 40px;
}

    .booking-hours h3 {
        font-family: 'Playfair Display', serif;
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 15px;
    }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #cccccc;
}

    .hours-row span:last-child {
        color: var(--gold, #d4af37);
    }

.booking-notice {
    font-size: 12px;
    color: #777777;
    line-height: 1.5;
}

/* Sağ Form Tarafı */
.reservation-form-side {
    flex: 1.2;
    padding: 60px;
    display: flex;
    align-items: center;
}

    .reservation-form-side form {
        width: 100%;
    }

/* Form Izgarası */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group.full-width {
        grid-column: span 2;
    }

    .form-group label {
        font-size: 12px;
        color: #dddddd;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* İnput ve Select Ögeleri */
    .form-group input,
    .form-group select,
    .form-group textarea {
        background-color: #161616;
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 14px 18px;
        color: #ffffff;
        font-size: 14px;
        outline: none;
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold, #d4af37);
            background-color: #1a1a1a;
        }

/* Altın Rezervasyon Butonu */
.btn-booking {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--gold, #d4af37);
    color: var(--gold, #d4af37);
    padding: 16px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.4s ease;
}

    .btn-booking:hover {
        background-color: var(--gold, #d4af37);
        color: #000000;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    }

/* ==========================================
   MOBİL VE TABLET RESPONSIVE AYARLARI
   ========================================== */
@media (max-width: 991px) {
    .reservation-card {
        flex-direction: column;
    }

    .reservation-info-side,
    .reservation-form-side {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr; /* Mobilde her girdi tek satır */
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* ==========================================
   YENİ GÖRSEL SPLIT REZERVASYON STİLLERİ
   ========================================== */
.reservation-section {
    padding: 100px 0;
    background-color: #0b0b0b;
    width: 100%;
}

.reservation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* İki Bölümlü Ana Panel */
.reservation-card-split {
    display: flex;
    background-color: #111111;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    overflow: hidden;
}

/* ==========================================
   SOL BÖLÜM: YENİLENEN GÖRSEL VE ÇERÇEVE DÜZENİ
   ========================================== */
.reservation-image-side {
    flex: 1;
    background-color: #161616; /* Boş kalan alanlar için premium koyu zemin */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px; /* Görselin karta yapışmasını önleyen lüks boşluk */
    position: relative;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

/* Sönük görünümü kaldıran, resmi parıldatan yeni sarmalayıcı */
.reservation-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 520px; /* Resmin devasa büyümesini kesin olarak engeller */
    border: 1px solid rgba(212, 175, 55, 0.2); /* İnce altın çerçeve */
    padding: 10px;
    background-color: #111111;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.res-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kırpmadan çerçeveye tam sığdırır */
    display: block;
    border-radius: 2px;
    filter: brightness(0.95) contrast(1.05); /* ARTIK SÖNÜK DEĞİL: Canlı ve net! */
    transition: all 0.5s ease;
}

.reservation-image-wrapper:hover .res-bg-img {
    filter: brightness(1.05) contrast(1.1);
}

/* Görsel Üstündeki Yazıları Alt Kısma Şık Bir Şerit Olarak Alıyoruz */
.reservation-image-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 20px;
    background: rgba(11, 11, 11, 0.85); /* Arkası hafif transparan şerit */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-align: center;
}

.res-subtitle {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold, #d4af37);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.res-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
}

/* Çalışma Saatleri Kutusu (Çok kalabalık yapmaması için altına ince hatla ekledik) */
.res-hours-box {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

.res-hours-line {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaaaaa;
}

    .res-hours-line span:last-child {
        color: var(--gold, #d4af37);
    }

/* ==========================================
   RESPONSIVE DÜZENLEME (MOBİLDE ESNEKLİK)
   ========================================== */
@media (max-width: 991px) {
    .reservation-image-side {
        padding: 20px;
        min-height: auto;
    }

    .reservation-image-wrapper {
        height: 320px;
    }
}

/* Sağ Bölüm: Form Düzeni */
.reservation-form-side-split {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.form-main-desc {
    font-size: 14px;
    color: #888888;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Form Grid Mimarisi */
.form-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-input-group.full-width-input {
        grid-column: span 2;
    }

    .form-input-group label {
        font-size: 11px;
        color: #aaaaaa;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-input-group input,
    .form-input-group select,
    .form-input-group textarea {
        background-color: #161616;
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 14px 16px;
        color: #ffffff;
        font-size: 14px;
        outline: none;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

        .form-input-group input:focus,
        .form-input-group select:focus,
        .form-input-group textarea:focus {
            border-color: var(--gold, #d4af37);
            background-color: #1a1a1a;
        }

/* REZERVASYON YAP BUTONU */
.btn-submit-booking {
    background-color: var(--gold, #d4af37);
    color: #0b0b0b;
    border: none;
    padding: 16px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-submit-booking:hover {
        background-color: #ffffff;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

/* ==========================================
   INTL-TEL-INPUT KOYU TEMA ENTEGRASYONU
   ========================================== */
.iti {
    width: 100%; /* Telefon sarmalayıcısını tam genişlik yap */
}

/* Ülke Listesi Açılır Kutusu */
.iti__country-list {
    background-color: #161616 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    max-width: 320px;
}

.iti__country:hover, .iti__country.iti__highlight {
    background-color: rgba(212, 175, 55, 0.15) !important;
}

.iti__selected-dial-code {
    color: var(--gold, #d4af37) !important;
    margin-left: 6px;
}

/* ==========================================
   RESPONSIVE (MOBİL) DÜZENLEMELERİ
   ========================================== */
@media (max-width: 991px) {
    .reservation-card-split {
        flex-direction: column;
    }

    .reservation-image-side {
        min-height: 350px;
    }

    .reservation-form-side-split {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .form-split-grid {
        grid-template-columns: 1fr;
    }

    .form-input-group.full-width-input {
        grid-column: span 1;
    }
}
/* ==========================================
   TARİH SEÇİCİ (DATEPICKER) KARANLIK TEMA ÖZELLEŞTİRMESİ
   ========================================== */

/* 1. Tarayıcının varsayılan çirkin ipucu (tooltip) yazısını engelleme */
div[title="Tarih seçiciyi göster"],
input[type="date"]::-webkit-validation-bubble {
    display: none !important;
}

/* 2. Siyah temada görünmeyen takvim ikonunu altın rengine çevirme */
input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    filter: drop-shadow(0px 0px 2px rgba(212, 175, 55, 0.5));
    transition: transform 0.2s ease;
}

    /* Üzerine gelindiğinde ikon hafifçe büyüsün */
    input[type="date"]::-webkit-calendar-picker-indicator:hover {
        transform: scale(1.1);
    }

/* 3. Tarih alanının yazı formatını ve placeholder rengini düzenleme */
input[type="date"] {
    position: relative;
    color-scheme: dark; /* Tarayıcıya içerideki takvim açılır penceresini de koyu tema açmasını söyler */
}

/* Form genelindeki placeholder/ipucu metin renklerini netleştirme */
.form-input-group input::placeholder,
.form-input-group textarea::placeholder {
    color: #555555 !important; /* Çok parlak olmayan, şık bir gri */
}





/* ==========================================
   EKSİKSİZ BİZE ULAŞIN (CONTACT) SECTION STİLLERİ
   ========================================== */
.contact-section {
    background-color: #0b0b0b;
    width: 100%;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.contact-split-container {
    display: flex;
    min-height: 600px; /* Geniş ve prestijli bir görünüm için */
    width: 100%;
}

/* --- Sol Panel: İletişim Bilgileri --- */
.contact-info-panel {
    flex: 1;
    background-color: #0b0b0b;
    padding: 80px 6% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold, #d4af37);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-desc {
    font-size: 15px;
    color: #888888;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* İletişim Satır Listesi */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* İkon Kutuları (FontAwesome olmasa bile parıldayan modern halkalar) */
.contact-icon-box {
    color: var(--gold, #d4af37);
    font-size: 20px;
    width: 44px;
    height: 44px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-text-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-text-box p,
.contact-text-box a {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-text-box a:hover {
        color: var(--gold, #d4af37);
    }

/* Sosyal Medya Çemberleri (Boş kalmaması için SVG/Yazı desteği eklendi) */
.contact-social-wrapper {
    display: flex;
    gap: 15px;
}

    .contact-social-wrapper a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(212, 175, 55, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold, #d4af37);
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        background-color: rgba(22, 22, 22, 0.6);
    }

        .contact-social-wrapper a:hover {
            background-color: var(--gold, #d4af37);
            color: #000000;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
            transform: translateY(-3px);
        }

/* --- Sağ Panel: Tam Ekran Canlı Harita --- */
.contact-map-panel {
    flex: 1.2;
    position: relative;
    background-color: #1a1a1a;
    filter: none !important; /* Sönüklüğü kaldıran kritik kod! */
}

    .contact-map-panel iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

/* ==========================================
   MİNİMAL SADE FOOTER STİLLERİ
   ========================================== */
.minimal-footer {
    background-color: #060606;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555555;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

    .footer-bottom-links a {
        color: #555555;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: var(--gold, #d4af37);
        }

/* ==========================================
   RESPONSIVE (MOBIL UYUMLULUK) DÜZENLEMELERİ
   ========================================== */
@media (max-width: 991px) {
    .contact-split-container {
        flex-direction: column;
    }

    .contact-info-panel {
        padding: 60px 30px;
    }

    .contact-main-title {
        font-size: 36px;
    }

    .contact-map-panel {
        height: 400px;
        flex: none;
        width: 100%;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ==========================================
   MİSAFİR YORUMLARI (TESTIMONIALS) STİLLERİ
   ========================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: #111111; /* Contact öncesi şık bir katman kontrastı */
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.testimonials-container {
    max-width: 900px; /* Okunabilirliği artırmak için metin alanını daralttık */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Üst Başlık Alanı */
.testimonials-header {
    margin-bottom: 50px;
}

.testimonials-subtitle {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold, #d4af37);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-divider-center {
    width: 60px;
    height: 1px;
    background-color: var(--gold, #d4af37);
    margin: 0 auto 30px;
}

/* Google Puan Rozeti */
.google-rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: rgba(22, 22, 22, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 15px 30px;
    border-radius: 4px;
}

    .google-rating-badge .stars {
        color: var(--gold, #d4af37);
        font-size: 20px;
        letter-spacing: 2px;
    }

.rating-text {
    font-size: 14px;
    color: #aaaaaa;
}

.bold-rating {
    color: #ffffff;
    font-weight: 700;
}

.review-count {
    color: var(--gold, #d4af37);
    margin-left: 5px;
}

/* --- Slider Mekanizması --- */
.testimonials-slider-wrapper {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    min-height: 220px; /* Slayt geçişlerinde boy zıplamasını engeller */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .testimonial-slide.active {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.8;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 30px;
}

.guest-name {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.guest-status {
    font-size: 12px;
    color: var(--gold, #d4af37);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slider Navigasyon Noktaları */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .t-dot.active {
        background-color: var(--gold, #d4af37);
        transform: scale(1.3);
    }

/* Mobil Ekran Ayarları */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-quote {
        font-size: 18px;
        line-height: 1.6;
    }
}


/* ==========================================
   YENİ FOOTER STİLLERİ (HARİTASIZ & GİZLİ LİNK AYARLI)
   ========================================== */
.rich-footer {
    background-color: #060606;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Harita kalktığı için 2 Sütunlu Dengeli Düzen */
.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Sol Taraf Görsel ve Marka Başlığı */
.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-small-img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-brand-title {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
}

.footer-brand-desc {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    max-width: 450px;
}

/* Sosyal Medya İkon Yuvaları */
.footer-social-circles {
    display: flex;
    gap: 12px;
}

.social-circle-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-circle-link:hover {
        border-color: #d4af37;
        color: #d4af37;
        transform: translateY(-2px);
    }

/* İletişim Sütunu */
.footer-section-title {
    font-size: 15px;
    color: #d4af37;
    font-weight: 500;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .footer-contact-list li {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

.contact-label {
    font-size: 11px;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-list p {
    margin: 0;
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
}

.footer-contact-list a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-contact-list a:hover {
        color: #d4af37;
    }

/* --- ALT ŞERİT & SİHİRLİ GİZLİ LİNK CSS'İ --- */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 12px;
    color: #444444; /* Dışarıdan bakınca düz sönük telif yazısı */
    margin: 0;
}

/* Giriş Paneli Linklerini Gizleyen ve Şıklaştıran Sihirli Kod */
.footer-hidden-link {
    color: #444444;
    text-decoration: none !important; /* Alt çizgiyi tamamen yok eder */
    transition: color 0.2s ease;
    cursor: default; /* Üzerine gelince el işareti çıkmasın, düz yazı sanılsın isterseniz poiner da yapabilirsiniz */
}

    .footer-hidden-link:hover {
        color: #d4af37; /* Sadece siz bildiğiniz için üzerine geldiğinizde hafifçe altına parlar */
    }

.footer-legal-links {
    display: flex;
    gap: 20px;
}

    .footer-legal-links a {
        color: #444444;
        font-size: 12px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-legal-links a:hover {
            color: #d4af37;
        }

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}
.footer-logo-link {
    color: #ffffff;
    text-decoration: none !important; /* Alt çizgiyi kaldırır */
    transition: color 0.3s ease;
}

    .footer-logo-link:hover {
        color: #d4af37; /* Fareyle üzerine gelindiğinde şık bir altın sarısına döner */
    }












/* Ortak Kapsayıcı Kuralları */
.custom-lang-container {
    position: relative !important;
    display: block !important;
}

/* --- MOBİL GÖRÜNÜM AYARLARI (1199px ve Altı) --- */
@media (max-width: 1199px) {
    .custom-lang-container {
        margin: 20px !important; /* Mobil menüdeki diğer linklerden ayırma boşluğu */
    }
    /* Ana Gri Buton Görünümü */
    .custom-lang-trigger {
        display: inline-flex !important;
        align-items: center !important;
        background-color: #f4f6f9 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 10px !important;
        padding: 10px 18px !important;
        color: #1e293b !important;
        min-width: 160px !important;
        cursor: pointer !important;
        user-select: none !important;
    }

    .custom-lang-main-flag {
        font-size: 1.2rem !important;
        border-radius: 3px !important;
        margin-right: 10px !important;
    }

    .custom-lang-text {
        font-size: 14px !important;
        letter-spacing: 0.5px !important;
    }
    /* Kırmızı Ok Butonu */
    .custom-lang-chevron {
        font-size: 11px !important;
        color: #ffffff !important;
        background-color: #ce1212 !important;
        width: 22px !important;
        height: 22px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        padding: 0 !important;
        transition: transform 0.2s ease-in-out !important;
    }
    /* KUTUNUN GÖRÜNMESİNİ SAĞLAYAN SİHİRLİ ALAN (KAPALI DURUM) */
    .custom-lang-dropdown {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        background-color: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        margin-top: 10px !important;
        padding: 6px 0 !important;
        width: 100% !important;
        max-width: 260px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
        height: auto !important; /* Temanın yükseklik ezmesini engeller */
    }
    /* TETİKLENME ANINDAKİ (AÇIK) DURUM */
    .custom-lang-input:checked ~ .custom-lang-dropdown {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    /* Tıklanınca Kırmızı Okun Yukarı Dönmesi */
    .custom-lang-input:checked ~ .custom-lang-trigger .custom-lang-chevron {
        transform: rotate(180deg) !important;
    }
    /* Açılan Kutunun İçindeki Dil Satırları */
    .custom-lang-item {
        padding: 12px 20px !important;
        color: #475569 !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
        display: flex !important;
        align-items: center !important;
        background: #ffffff !important;
    }

        .custom-lang-item:last-child {
            border-bottom: none !important;
        }

        .custom-lang-item:active {
            background-color: #f8fafc !important;
            color: #ce1212 !important;
        }
}

/* --- MASAÜSTÜ GÖRÜNÜM AYARLARI (1200px ve Üzeri) --- */
@media (min-width: 1200px) {
    .custom-lang-container {
        display: flex !important;
        align-items: center !important;
        padding: 0 15px !important;
        height: 100% !important;
    }

    .custom-lang-trigger {
        background: rgba(0, 0, 0, 0.04) !important;
        border: none !important;
        padding: 6px 12px !important;
        border-radius: 6px !important;
        cursor: pointer !important;
    }

    .custom-lang-chevron {
        margin-left: 8px !important;
        font-size: 11px !important;
        color: #333 !important;
    }

    .custom-lang-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 8px 0;
        border-radius: 6px;
        min-width: 150px;
        z-index: 999;
    }

    .custom-lang-container:hover .custom-lang-dropdown {
        display: block !important;
    }

    .custom-lang-item {
        padding: 8px 16px;
        color: #333;
        display: flex;
        text-decoration: none;
    }

        .custom-lang-item:hover {
            background-color: #f8f9fa;
        }
}



/* Buton Kapsayıcısı */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Ortak Buton Stili */
.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .floating-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        color: #ffffff;
    }

/* Renkler */
.whatsapp-btn {
    background: #25D366;
}

.phone-btn {
    background: #c8a96e; /* Restoranın altın rengiyle uyumlu */
}

/* Mobil için biraz daha küçük olabilir */
@media (max-width: 576px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}