:root {
    --primary-dark: #1a1a1a;
    --primary-light: #ffffff;
    --bg-color: #fbfbfb;
    /* Çok uçuk bir kırık beyaz */
    --gold: #c5a880;
    /* Daha mat, antika bir altın sarısı */
    --gold-light: #e6d5b8;
    --text-dark: #2c2c2c;
    --text-muted: #888888;
    --red-brand: #c92a2a;
    /* Şarap kırmızısına dönük */
    --smooth-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- HEADER & LOGO --- */
.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px 30px;
    /* Üstten biraz daha pay verildi */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    /* Karanlık yumuşak geçiş */
    position: absolute;
    /* Sliderın üstünde bağımsız havada duracak */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Her şeyin üstünde */
}

.logo-link {
    display: inline-block;
    margin-bottom: 5px;
}

/* --- SITE LOADER --- */
#site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#site-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 10px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(197, 168, 128, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { opacity: 0.5; filter: blur(2px); }
    50% { opacity: 1; filter: blur(0px); }
    100% { opacity: 0.5; filter: blur(2px); }
}

.logo-image, .footer-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.6s var(--smooth-easing);
    opacity: 0;
    visibility: hidden;
}

.logo-image.loaded, .footer-logo-img.loaded {
    opacity: 1;
    visibility: visible;
}

.logo-image:hover {
    transform: scale(1.02);
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: 400;
}

.lang-switch {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    /* Eklendi */
}

.lang-switch span.active {
    color: var(--gold);
    /* Beyaz/Siyah arkaplanda premium duruş için */
    font-weight: 700;
}

.lang-switch span {
    color: rgba(255, 255, 255, 0.7);
    /* Karanlık arkaplan üzerine açık renk */
    cursor: pointer;
    transition: 0.3s;
    margin: 0 8px;
}

.lang-switch span:hover {
    color: var(--primary-light);
}

/* --- PREMIUM HERO SLIDER (Ken Burns & Elegance) --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100svh;
    /* Mobilde dahil tam ekran yapar */
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ken Burns Effect: Background image container that slowly zooms */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* Nostaljik lüks bir görünüm için sepya + doygunluk ayarı */
    filter: sepia(0.3) saturate(1.2) contrast(1.1);
    transform: scale(1);
    transition: transform 10s linear;
}

/* Aktif slide da zoom başlasın */
.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    /* Klasik bir vignette (kenarlardan kararma) ve merkeze doğru altın ışıltı Gradient'i */
    background: radial-gradient(circle at center, rgba(30, 20, 10, 0.2) 0%, rgba(10, 5, 2, 0.8) 100%);
    z-index: 1;
}

.slide-content-box {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    color: var(--primary-light);
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Kutu kaldırıldı, tamamen şeffaf ve tipografi odaklı şık bir tasarım yapıldı. */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--smooth-easing) 0.5s;
    /* Gecikmeli yumuşak giriş */
}

/* Aktif slaytta içerik yukarı kayarak gelsin */
.swiper-slide-active .slide-content-box {
    opacity: 1;
    transform: translateY(0);
}

.slide-content-box p {
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.slide-content-box p::after,
.slide-content-box p::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.slide-content-box p::before {
    right: -45px;
}

.slide-content-box p::after {
    left: -45px;
}

.slide-content-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    /* Başlıklar çok daha büyük ve ihtişamlı */
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.8);
    color: #fff;
}

/* Slider Butonları (Pagination - Geliştirildi) */
.swiper-pagination-bullet {
    background: var(--primary-light);
    opacity: 0.4;
    transition: all 0.3s ease;
    width: 6px;
    height: 6px;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    width: 25px;
    /* Uzun çizgi efekti */
    border-radius: 4px;
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--gold-light);
    opacity: 1;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem;
    font-weight: 300;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Scroll Down Indicator (Bouncing Arrow) */
.scroll-down-indicator {
    position: absolute;
    bottom: 35px;
    /* Biraz daha yukarı çekildi */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gold-light);
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.bouncing-arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* --- PREMIUM MENU KATEGORİLERİ --- */
.menu-wrapper {
    max-width: 950px;
    /* Daha geniş yapıldı */
    margin: 50px auto 60px;
    padding: 0 20px;
    scroll-margin-top: 50px;
}


.category-card {
    background: transparent;
    margin-bottom: 25px;
    border: none;
}

.category-image {
    height: 190px;
    /* 50px artırıldı */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: height 0.5s var(--smooth-easing), transform 0.3s ease;
}

.category-image:active {
    transform: scale(0.98);
}

.category-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.5s var(--smooth-easing);
}

.category-title {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--primary-light);
    letter-spacing: 4px;
    font-weight: 500;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
    text-align: center;
    /* Uzun kelimelerde sola kaymayı önler */
    padding: 0 10px;
}

/* Akordiyon Açık Durumu */
.category-card.active .category-image {
    height: 85px;
    border-radius: 4px 4px 0 0;
    box-shadow: none;
}

.category-card.active .category-image::before {
    background: rgba(0, 0, 0, 0.7);
}

.product-container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s var(--smooth-easing);
    background: transparent;
    border-radius: 0 0 4px 4px;
    margin-top: -1px;
}

.category-card.active .product-container {
    grid-template-rows: 1fr;
}

.product-list-wrapper {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.4s var(--smooth-easing);
}

.category-card.active .product-list-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.15s, transform 0.5s var(--smooth-easing) 0.1s;
}

/* --- ÜRÜN LİSTESİ --- */
.product-list {
    padding: 20px 5px;
    /* Yanlardan kısıtlama kaldırıldı */
}

.product-item {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-item-image {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Kare istersen 4px yapabilirsin */
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-light);
}

.product-item-details {
    flex-grow: 1;
    min-width: 0; /* Ensures inner flex layouts can shrink correctly */
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    margin-bottom: 6px;
}

.product-name-container {
    display: flex;
    align-items: center;
    background: var(--bg-color);
    /* Gövde rengi ile aynı (çizgiyi kesmek için) */
    padding-right: 6px;
    z-index: 2;
}

.product-name {
    font-family: 'Sorts Mill Goudy', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    color: #2b2b2b;
    line-height: 1.2;
    text-transform: uppercase;
}

/* SİLİK NOKTALAMALAR */
.product-leader {
    flex-grow: 1;
    /* Screenshot'taki gibi ince noktalı çizgi */
    border-bottom: 2px dotted #e0e0e0;
    margin: 0;
    position: relative;
    top: -4px;
    /* Çizginin yazıların hizasına göre ayarlanması */
    z-index: 1;
}

.product-price {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #24262a;
    background: var(--bg-color);
    /* Gövde rengi ile aynı */
    padding-left: 6px;
    z-index: 2;
    white-space: nowrap;
}

.product-desc {
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    /* Biraz küçültüldü */
    color: #68686d;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 5px;
    max-width: 90%;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    text-align: center;
    padding: 60px 20px 50px;
    position: relative;
    border-top: 1px solid #222;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    /* Footer koyu renk olduğundan eğer logo siyahsa filter ile beyaz/altın yapılabilir. 
               Eğer logo zaten PNG ise böyle kalabilir. Altın sarısı yapmak için sepia eklenebilir. */
    /* filter: brightness(0) invert(1); */
}

.footer-social {
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary-light);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 300;
}

.footer-social i {
    font-size: 1.5rem;
    color: var(--gold);
}

.footer-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(197, 168, 128, 0.3);
    /* Altın rengi silik çizgi */
    margin: 0 auto 30px;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-text a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
}

.footer-text a:hover {
    color: var(--primary-light);
}

.reservation-reminder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-top: 40px;
    color: var(--gold-light);
    font-style: italic;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* YUKARI ÇIK BUTONU - SABİTLENDİ */
.btn-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(5px);
    color: var(--gold);
    border: 1px solid rgba(197, 168, 128, 0.5);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
}

.btn-to-top:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

/* WHATSAPP FOOTER BUTONU */
.footer-whatsapp-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid rgba(37, 211, 102, 0.5);
    /* Hafif yeşil sınır */
    color: var(--primary-light);
    border-radius: 30px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-whatsapp-btn i {
    font-size: 1.5rem;
    color: #25d366;
    /* WhatsApp yeşili ikonda kalsın */
    transition: color 0.4s ease;
}

.footer-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #25d366;
    transition: width 0.4s ease;
    z-index: -1;
}

.footer-whatsapp-btn:hover {
    color: #ffffff;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.footer-whatsapp-btn:hover i {
    color: #ffffff;
}

.footer-whatsapp-btn:hover::before {
    width: 100%;
}