/* --- TEMİZ MODERN BUTİK PALETİ --- */
:root {
    --bg-warm: #FAF7F2;          /* Sıcak Fildişi Arka Plan */
    --bg-card: #FFFFFF;          /* Temiz Beyaz Kartlar */
    --primary: #BA5D53;          /* Butik Pişmiş Toprak / Gül Kurusu */
    --primary-light: #FBF0ED;    /* Hafif Pembe / Krem Vurgusu */
    --primary-dark: #8E3930;     /* Koyu Karamel-Bordo Vurgusu */
    --gold: #C69A58;             /* Zarafet katan Sıcak Altın */
    --text-dark: #2C221E;        /* Kömürleşmiş Kahve / Yumuşak Siyah */
    --text-muted: #80736C;       /* Okunaklı Nötr Gri-Kahve */
    --border-soft: #EFE8DF;      /* Zarif İnce Çerçeveler */
    --shadow-card: 0 12px 35px rgba(58, 41, 35, 0.05), 0 2px 6px rgba(58, 41, 35, 0.02);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-warm);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Sayfa Arka Planına Hafif Sıcak Işıma */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 10%, rgba(245, 230, 222, 0.55) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* --- HERO & BAŞLIK ALANI --- */
.header-section {
    padding: 60px 20px 40px;
    text-align: center;
}

.header-container {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(186, 93, 83, 0.12);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: rotate(10deg) scale(1.05);
}

.sub-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.brand-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.15;
    color: var(--text-dark);
}

.brand-text h1 span {
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px auto;
    width: 140px;
    color: var(--gold);
}

.title-divider .line {
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.title-divider .gem {
    font-size: 12px;
}

.menu-tagline {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--text-muted);
}

/* --- CANLI ARAMA KUTUSU --- */
.search-box {
    margin-top: 30px;
    width: 100%;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box svg {
    position: absolute;
    left: 18px;
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 40px;
    border: 1px solid var(--border-soft);
    background-color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(186, 93, 83, 0.15);
}

/* --- YAPIŞKAN (STICKY) KATEGORİ ÇUBUĞU --- */
.category-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 12px 0;
}

.category-scroll {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}

.category-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.cat-link {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.cat-link:hover, .cat-link.active {
    background-color: var(--primary);
    color: #FFFFFF;
}

/* --- SAYFA İÇERİĞİ VE KUTULAR --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.menu-section {
    margin-bottom: 45px;
}

.menu-box {
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 45px 45px 35px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header.align-left {
    text-align: left;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.section-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 10px;
}

/* --- MENÜ SATIRLARI (RESTORAN STİLİ LİSTE) --- */
.menu-item {
    display: flex;
    align-items: baseline;
    padding: 10px 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.menu-item:hover {
    background-color: var(--primary-light);
}

.item-info {
    display: flex;
    flex-direction: column;
    max-width: 70%;
}

.item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
}

.item-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}

/* İsim ve Fiyatı Bağlayan Şık Noktalar */
.item-spacer {
    flex: 1;
    border-bottom: 1px dotted #DCD1C4;
    margin: 0 12px;
    height: 1px;
}

.item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    letter-spacing: -0.2px;
}

.highlight-item {
    background-color: rgba(198, 154, 88, 0.08);
    border-radius: 8px;
}

/* --- FOOTER & NOTLAR --- */
.footer-note {
    text-align: center;
    padding: 40px 20px 20px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-note strong {
    color: var(--primary);
}

.copyright {
    margin-top: 25px;
    font-size: 11px;
    color: #A3968F;
    letter-spacing: 0.5px;
}

/* --- WHATSAPP FLOATING BUTONU --- */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background-color: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 820px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .menu-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .brand-text h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .split-category .column:first-child {
        margin-bottom: 30px;
        border-bottom: 1px dashed var(--border-soft);
        padding-bottom: 25px;
    }

    .whatsapp-btn span {
        display: none; /* Mobilde sadece ikon göstererek alanı korur */
    }

    .whatsapp-btn {
        padding: 14px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}