:root {
    --primary: #1B3022;
    --accent: #B5835A;
    --cream: #FDFBF7;
    --text: #2D241E;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    scroll-behavior: smooth;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Nav Styles */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: fixed;
    width: 100%;
    z-index: 2000;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; z-index: 2100; }
.logo span { color: var(--accent); }

.nav-links { display: flex; list-style: none; transition: 0.3s ease; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; }

/* Hamburger Menu (Hidden on Desktop) */
.nav-toggle { display: none; }
.nav-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 2100;
}
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
    display: block;
    background: var(--text);
    height: 2px;
    width: 25px;
    position: relative;
    transition: 0.3s;
}
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(27, 48, 34, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content { position: relative; z-index: 10; padding: 0 20px; }

.pre-title { letter-spacing: 6px; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 15px; color: var(--accent); font-weight: 600; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-subtext { font-size: 1.1rem; max-width: 600px; margin: 0 auto 40px; opacity: 0.9; }

.btn-gold { background: var(--accent); color: white; padding: 15px 30px; text-decoration: none; font-weight: 600; border-radius: 4px; display: inline-block; transition: 0.3s; }
.btn-outline { border: 1px solid white; color: white; padding: 15px 30px; text-decoration: none; font-weight: 600; border-radius: 4px; margin-left: 10px; display: inline-block; transition: 0.3s; }

/* Menu & Grid */
.menu-section { padding: 80px 8%; }
.section-intro { text-align: center; margin-bottom: 50px; }
.section-intro h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; }
.category-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin: 40px 0 20px; border-bottom: 1px solid #ddd; padding-bottom: 10px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.menu-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.menu-card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.price { font-weight: 700; color: var(--accent); }



/* Visit Section */
.visit-section { background: var(--primary); color: white; padding: 80px 8%; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.visit-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 20px; color: var(--accent); }
.visit-map { border-radius: 15px; overflow: hidden; height: 400px; border: 1px solid var(--accent); }
.visit-map iframe { width: 100%; height: 100%; }

footer { text-align: center; padding: 30px; font-size: 0.8rem; background: #eee; }

/* --- RESPONSIVE QUERIES --- */

@media (max-width: 992px) {
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { height: 350px; }
}

@media (max-width: 768px) {
    /* Mobile Nav Logic */
    .nav-toggle-label { display: block; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh; width: 70%;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-links li { margin: 20px 0; }
    .nav-links a { font-size: 1.2rem; }
    
    /* Show menu when checkbox is checked */
    .nav-toggle:checked ~ .nav-links { right: 0; }
    
    /* Animate Hamburger to X */
    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }

    /* Hero Buttons */
    .btn-outline { margin-left: 0; margin-top: 15px; width: 100%; max-width: 250px; }
    .btn-gold { width: 100%; max-width: 250px; }
    
    .hero h1 { font-size: 3rem; }
    .hero-subtext { font-size: 1rem; }
}

@media (max-width: 480px) {
    .menu-section, .visit-section { padding: 60px 5%; }
    .hero h1 { font-size: 2.5rem; }
    .pre-title { letter-spacing: 3px; font-size: 0.75rem; }
}

/* --- Enhanced Extras Section --- */

.extras-section {
    margin-top: 100px;
    background: #fff; /* White background for contrast */
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(27, 48, 34, 0.1);
    box-shadow: 0 10px 50px rgba(0,0,0,0.02);
    text-align: center;
}

.extras-header {
    margin-bottom: 50px;
}

.small-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.extras-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
}

.mini-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 15px auto;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.extra-box {
    padding: 30px;
    background: var(--cream);
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.extra-box:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.extra-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.extra-box h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.extra-box ul {
    list-style: none; 
    text-align: left;
    display: inline-block; 
}

.extra-box ul li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.extra-box ul li span {
    font-size: 0.8rem;
    filter: sepia(1) saturate(2) hue-rotate(40deg); 
    opacity: 0.7;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .extras-section {
        padding: 40px 20px;
    }
    .extra-box {
        padding: 20px;
    }
}