/* --- Global Variables (Ultra-Premium Rustic Aesthetic Theme) --- */
:root {
    --bg-dark: #1c1917; /* Soft, warm dark stone gray/brown */
    --bg-panel: #292524; /* Muted espresso brown */
    --primary-accent: #bc9c6c; /* Antique gold / muted bronze */
    --primary-hover: #d1b99a; /* Soft beige / gold */
    --text-main: #f5f1e9; /* Aged parchment / off-white */
    --text-muted: #a8a29e; /* Warm desaturated gray */
    --border-color: #44403c; /* Softer, warm brown-gray */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    line-height: 1.8; /* Increased line height for a premium feel */
    overflow-x: hidden;
    animation: fadeIn 2s ease-in-out; /* Slower, more luxurious fade */
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, .logo { font-family: 'Merriweather', serif; font-weight: 700; }

a { text-decoration: none; color: inherit; transition: all 0.4s ease; }

/* --- Navigation (Floating Glass & Antique Gold) --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 5%; background: rgba(28, 25, 23, 0.9); /* See-through warm background */
    backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
    transition: all 0.4s ease;
}

.logo { font-size: 2rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--text-main); }
.logo span { color: var(--primary-accent); }

.nav-links { display: flex; gap: 40px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-accent); }

/* Premium Underline Hover Effect for Menu Tabs */
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 1px;
    display: block; margin-top: 5px; right: 0;
    background: var(--primary-accent); transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; background: var(--primary-accent); }

/* --- Buttons (Rustic Antique Finish) --- */
.btn-solid {
    background-color: var(--primary-accent); color: var(--bg-dark);
    padding: 14px 32px; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px; border: none; cursor: pointer; font-weight: 700;
}
.btn-solid:hover { background-color: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(188, 156, 108, 0.1); }

.btn-outline {
    border: 1px solid var(--primary-accent); color: var(--primary-accent);
    padding: 14px 32px; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px; display: inline-block; background-color: transparent;
}
.btn-outline:hover { background-color: var(--primary-accent); color: var(--bg-dark); }

/* --- Hero Section --- */
.hero {
    height: 95vh; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient from subtle darkness to deep espresso base */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(28,25,23,1));
}
.hero-content { position: relative; z-index: 10; max-width: 900px; padding: 0 20px; }
.hero h1 { font-size: 5.5rem; margin-bottom: 20px; letter-spacing: 5px; text-transform: uppercase; color: var(--text-main); line-height: 1.1; }
.hero p { font-size: 1.2rem; color: #ddd; margin-bottom: 40px; letter-spacing: 5px; text-transform: uppercase; font-weight: 300;}

/* --- Layouts & Typography --- */
.section-padding { padding: 120px 5%; max-width: 1400px; margin: 0 auto; }
.text-center { text-align: center; }
.section-title { font-size: 3.5rem; margin-bottom: 20px; color: var(--text-main); letter-spacing: 1px;}
.divider { width: 70px; height: 1px; background-color: var(--primary-accent); margin: 0 auto 50px; opacity: 0.6;}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg-panel); border-radius: 4px; overflow: hidden;}
.feature-img { width: 100%; height: 100%; min-height: 550px; object-fit: cover; }
.feature-text { padding: 100px; display: flex; flex-direction: column; justify-content: center; }
.feature-text h3 { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary-accent); letter-spacing: 1px; }
.feature-text p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; }

/* --- Expanded Menu Styles (Rustic Menu Layout) --- */
.menu-container { max-width: 1000px; margin: 0 auto; }
.menu-category { margin-bottom: 100px; }
.menu-category h2 { font-size: 2.8rem; text-align: center; margin-bottom: 60px; color: var(--primary-accent); border-bottom: 1px solid var(--border-color); padding-bottom: 25px;}
.menu-item { margin-bottom: 40px; transition: all 0.3s ease; padding: 20px; border-radius: 4px; border: 1px solid transparent; }
.menu-item:hover { background-color: var(--bg-panel); transform: scale(1.02); border-color: var(--border-color); }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.menu-item-name { font-family: 'Merriweather', serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; color: var(--text-main); }
.menu-item-dots { flex-grow: 1; border-bottom: 1px dotted var(--text-muted); margin: 0 25px; opacity: 0.3; }
.menu-item-price { font-size: 1.4rem; font-weight: 700; color: var(--primary-accent); font-family: 'Merriweather', serif; }
.menu-item-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 90%; font-style: italic; letter-spacing: 0.5px; }

/* --- Photo Gallery Grid (Rustic Aesthetic) --- */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 15px; }
.photo-gallery img { width: 100%; height: 450px; object-fit: cover; border-radius: 2px; transition: transform 0.6s ease, filter 0.6s ease; filter: sepia(0.2) brightness(0.9); /* Adds a light warm tint */ }
.photo-gallery img:hover { transform: scale(1.04); filter: sepia(0) brightness(1.1); z-index: 10; position: relative; }

/* --- Footer (Warm Rustic Finish) --- */
footer { background-color: #111111; padding: 100px 5% 50px; border-top: 1px solid var(--border-color); text-align: center; }
.footer-content { max-width: 600px; margin: 0 auto 50px; }
.footer-content h2 { font-size: 2.8rem; margin-bottom: 25px; letter-spacing: 3px; color: var(--text-main); }
.footer-content p { color: var(--text-muted); margin-bottom: 15px; letter-spacing: 1px;}
.footer-bottom { padding-top: 40px; color: #555; font-size: 0.85rem; border-top: 1px solid var(--border-color); text-transform: uppercase; letter-spacing: 3px; font-weight: 700;}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .feature-text { padding: 40px 20px; }
    .photo-gallery { grid-template-columns: 1fr; }
}