@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
    --bg-dark: #050505;
    --bg-light: #111111;
    --gold: #C5A059;
    --gold-hover: #E3C27C;
    --text-main: #F4F4F4;
    --text-muted: #999999;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background-color: var(--bg-dark); }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 400; color: var(--text-main); }
.gold-text { color: var(--gold); }

/* Navigation */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 25px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 2000; transition: var(--transition); border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(10px);
    padding: 15px 5%; border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.nav-brand {
    font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold);
    text-decoration: none; letter-spacing: 3px; text-transform: uppercase; z-index: 2001;
}

.nav-links { display: flex; gap: 35px; list-style: none; transition: var(--transition); }

.nav-links a {
    color: var(--text-main); text-decoration: none; font-size: 0.8rem;
    letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); position: relative;
}

.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 1px;
    bottom: -5px; left: 0; background-color: var(--gold); transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Mobile Menu Hamburger */
.hamburger { display: none; cursor: pointer; z-index: 2001; }
.hamburger span {
    display: block; width: 25px; height: 2px; background: var(--gold);
    margin: 5px auto; transition: all 0.3s ease-in-out;
}

/* Buttons */
.btn {
    display: inline-block; padding: 16px 35px; font-family: var(--font-body);
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; transition: var(--transition); cursor: pointer; border: 1px solid var(--gold);
}
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg-dark); }
.btn-solid { background: var(--gold); color: var(--bg-dark); }
.btn-solid:hover { background: transparent; color: var(--gold); }

/* Hero & Headers */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.9)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px;
}
.hero-content h1 { font-size: 5rem; letter-spacing: 8px; margin-bottom: 15px; text-transform: uppercase; }
.hero-content p { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); font-style: italic; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.page-header {
    height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background-position: center; background-size: cover; background-attachment: fixed; position: relative;
}
.page-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7), var(--bg-dark));
}
.page-header-content { position: relative; z-index: 1; padding: 0 20px; }
.page-header h1 { font-size: 4rem; letter-spacing: 4px; margin-bottom: 10px; }
.page-header p { font-family: var(--font-heading); font-style: italic; font-size: 1.5rem; color: var(--gold); }

/* Layout & Typography */
.section { padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.section-title { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; }
.section-subtitle { font-family: var(--font-heading); font-style: italic; color: var(--gold); font-size: 1.4rem; margin-bottom: 50px; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

/* Image Styling */
.image-block img, .gallery-img {
    width: 100%; height: 100%; object-fit: cover;
    border: 1px solid rgba(197, 160, 89, 0.2); padding: 10px;
}
.gallery-img { 
    width: 100%; 
    aspect-ratio: 1/1; /* Changed to square for better mobile stacking */
    object-fit: cover;
    border: 1px solid rgba(197, 160, 89, 0.2); 
    padding: 8px;
    transition: var(--transition);
}

.gallery-img:hover { 
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* Forms */
.custom-form { background: var(--bg-light); padding: 50px; border: 1px solid rgba(197, 160, 89, 0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }
.custom-form label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; color: var(--text-muted); }
.custom-form input, .custom-form select, .custom-form textarea {
    background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 12px 0; color: var(--text-main); font-family: var(--font-body); font-size: 1rem; transition: var(--transition); border-radius: 0;
}
.custom-form input:focus, .custom-form select:focus, .custom-form textarea:focus { outline: none; border-bottom-color: var(--gold); }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.faq-question { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.faq-answer { color: var(--text-muted); font-size: 0.95rem; }

/* Menu Specifics */
.menu-category { margin-bottom: 70px; }
.menu-category h2 { text-align: center; font-size: 2.2rem; color: var(--gold); margin-bottom: 40px; border-bottom: 1px solid rgba(197, 160, 89, 0.2); padding-bottom: 15px; }
.menu-item { margin-bottom: 30px; position: relative; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.item-name { font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 1px; background: var(--bg-dark); padding-right: 15px; z-index: 2; }
.item-price { font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold); background: var(--bg-dark); padding-left: 15px; z-index: 2; }
.item-dots { position: absolute; left: 0; right: 0; bottom: 6px; border-bottom: 1px dashed rgba(255,255,255,0.15); z-index: 1; }
.item-desc { font-size: 0.85rem; color: var(--text-muted); width: 90%; }

/* Footer */
.footer { background: #020202; padding: 80px 5% 30px; border-top: 1px solid rgba(197, 160, 89, 0.1); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
.footer-col h4 { font-size: 1.1rem; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; text-decoration: none; display: block; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.75rem; letter-spacing: 1px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive Design (Mobile First adjustments) */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 4rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; } /* Removed grid-3 from here */
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* NEW SPECIFIC GRID-3 FIX */
    .grid-3 { 
        grid-template-columns: 1fr; 
        gap: 50px; 
        max-width: 500px; 
        margin: 50px auto 0;
    }
    
    .grid-3 .reveal {
        text-align: center;
    }

    .gallery-img {
        aspect-ratio: 16/9; /* Makes images wide and cinematic on phones */
        padding: 5px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Implementation */
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 100%;
        background: rgba(5, 5, 5, 0.98); flex-direction: column; justify-content: center; align-items: center;
        transition: 0.5s ease; z-index: 2000; gap: 40px;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* General Mobile Layout */
    .hero-content h1 { font-size: 3rem; letter-spacing: 4px; }
    .hero-content p { font-size: 1.3rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    
    .page-header h1 { font-size: 3rem; }
    .section { padding: 70px 5%; }
    .section-title { font-size: 2.2rem; }
    
    .form-row { grid-template-columns: 1fr; gap: 15px; }
    .form-group.full { grid-column: span 1; }
    .custom-form { padding: 30px 20px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-col h4 { margin-bottom: 15px; }
    
    /* Menu adjustments */
    .item-name { font-size: 1.1rem; }
    .item-price { font-size: 1.1rem; }
    .item-desc { width: 100%; }
}
/* --- MANUAL IMAGE SIZE LOCK --- */
.gallery-img {
    width: 100% !important;
    height: 300px !important; /* This keeps them all the same height */
    object-fit: cover !important; /* This prevents the "stretched" look */
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 5px;
    background: var(--bg-dark);
}

.dish-card {
    max-width: 400px; /* Prevents the cards from blowing up too wide */
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
}

/* Specific Mobile Fix for these images */
@media (max-width: 768px) {
    .gallery-img {
        height: 250px !important; /* Slightly shorter on phones so you don't have to scroll forever */
    }
}