/* --- DEĞİŞKENLER (Renk Paleti a' Gusto Logosu ile Uyumlu Hale Getirildi) --- */
:root {
    --bg-dark: #120e0c; /* Daha sıcak bir siyah */
    --bg-card: #1c1613;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent-gold: #c87a3f; /* Logodaki karamel tonu */
    --accent-hover: #e08f50;
}

/* --- GENEL AYARLAR --- */
html {
    scroll-behavior: smooth; /* Tıklamada yumuşak kaydırma */
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Poppins aktif edildi */
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- LOGO GÖRSELİ AYARLARI --- */
.logo {
    font-family: 'Dancing Script', cursive; /* Orijinal logona benzeyen el yazısı fontu */
    font-size: 34px; /* Daha gösterişli olması için boyutunu büyüttük */
    font-weight: 700;
    color: var(--accent-gold); /* Logondaki o şık karamel/kahve tonu */
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Yazıya hafif bir 3D derinlik katar */
}
.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    opacity: 0.8;
}

/* --- NAVBAR (Cam Efekti) --- */
nav {
    position: fixed;
    width: 100%;
    background-color: rgba(18, 14, 12, 0.85);
    backdrop-filter: blur(10px); /* Cam efekti */
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    box-sizing: border-box;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-gold);
}

/* --- HERO (Ana Sayfa) --- */
header {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(18,14,12,1)), 
                url("https://images.unsplash.com/photo-1509042239860-f550ce710b93") no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.header-content h1 {
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

.header-content p {
    font-size: 18px;
    color: var(--accent-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 35px;
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* --- BÖLÜM (Section) STANDARTLARI --- */
section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

/* --- MENÜ --- */
#menu {
    background-color: var(--bg-dark);
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid rgba(200, 122, 63, 0.2);
    padding-bottom: 10px;
}

.menu-list {
    max-width: 800px;
    margin: auto;
}

/* Menü Öğeleri */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px); /* Üzerine gelince hafif sağa kayma */
}

.item-info {
    text-align: left;
    max-width: 80%;
}

.item-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-main);
}

.item-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 5px 0 0 0;
    font-style: italic;
}

.item-price {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- HAKKIMIZDA --- */
#hakkimizda {
    background-color: var(--bg-card);
    text-align: center;
}

.content-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

#hakkimizda p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 30px;
}

/* --- FOOTER (İletişim) --- */
footer {
    background-color: #050505;
    padding: 60px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 10px 0;
}

.copyright {
    margin-top: 40px !important;
    font-size: 12px !important;
    color: #555 !important;
}

/* --- MOBİL UYUM --- */
/* --- HAMBURGER MENÜ (Masaüstünde Gizli) --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Menünün üstünde kalması için */
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-main);
}

/* --- MOBİL UYUM VE AÇILIR MENÜ --- */
@media (max-width: 768px) {
    nav {
        padding: 15px 30px;
    }

    /* Hamburger İkonunu Mobilde Göster */
    .hamburger {
        display: block;
    }

    /* Menü Linklerini Gizle ve Tasarla */
    .nav-links {
        position: fixed;
        left: -100%; /* Ekranın solunda sakla */
        top: 0;
        flex-direction: column;
        background-color: rgba(18, 14, 12, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s;
        justify-content: center;
        gap: 40px;
    }

    /* JS ile 'active' class'ı gelince menüyü ekrana kaydır */
    .nav-links.active {
        left: 0;
    }

    nav a {
        font-size: 20px; /* Mobilde yazıları büyüt */
    }

    /* Çarpı İşareti Animasyonu */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Diğer Mobil Düzeltmeler */
    .header-content h1 {
        font-size: 40px;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-price {
        align-self: flex-end;
    }
}