/* --- General Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* --- Header & Nav --- */
header {
    background-color: #2e5d32;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.header-content { display: flex; justify-content: space-between; align-items: center; }

header h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
}

nav .nav-link {
    color: #e8f5e9;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav .nav-link:hover { color: #a5d6a7; }

.call-btn {
    background: #fff;
    color: #2e5d32 !important;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* --- Hero Section --- */
.hero {
    /* 
       New Background: 
       1. A gradient that goes from clear (top) to warm dark brown (bottom).
       2. A new image with warmer, cozy lighting.
    */
    background: 
        linear-gradient(
            to bottom, 
            rgba(60, 30, 0, 0.3),  /* Hints of brown at the top */
            rgba(40, 20, 0, 0.8)   /* Deep, warm broth-colored bottom */
        ), 
        url('https://phovuong.ca/victoria/chagio.png?auto=format&fit=crop&w=1350&q=80'); /* Warm Restaurant Interior */
    
    background-size: cover;
    background-position: center;
    height: 45vh; /* Slightly taller for better impact */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    
    /* Adds a subtle gold glow to the text to make it pop against the warm background */
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 3rem; 
    margin-bottom: 10px;
    color: #fff8e1; /* Subtle cream color instead of stark white */
}
.hero p { font-size: 1.2rem; margin-bottom: 25px; opacity: 0.9; }

.hero-btns .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
    transition: background 0.3s;
}

.primary-btn { background-color: #2e5d32; color: white; }
.primary-btn:hover { background-color: #1b3a1e; }
.outline-btn { border: 2px solid white; color: white; }
.outline-btn:hover { background-color: white; color: #2e5d32; }

/* --- Menu Tabs & Display --- */
.menu-section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 30px; }
.section-title h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #2e5d32; }

/* Tabs Styling */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    border: 2px solid #2e5d32;
    background: transparent;
    color: #2e5d32;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: #2e5d32;
    color: #fff;
}

/* Image Display */
.menu-content { display: none; animation: fadeIn 0.5s ease-in-out; }
.menu-content.active { display: block; }

.image-wrapper {
    position: relative;
    cursor: zoom-in;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img { width: 100%; display: block; transition: transform 0.5s; }
.image-wrapper:hover img { transform: scale(1.02); }

.zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    pointer-events: none;
}

/* --- Lightbox (Modal) --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    margin-top: 50px;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.caption { margin: auto; display: block; width: 80%; text-align: center; color: #ccc; padding: 10px 0; }

/* --- Footer --- */
footer { background-color: #222; color: #ccc; padding: 50px 0 20px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.footer-link { color: #fff; text-decoration: none; font-weight: bold; }
.copyright { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #444; }

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Mobile Tweaks */
@media (max-width: 600px) {
    .header-content { flex-direction: column; gap: 10px; }
    .hero h2 { font-size: 2.2rem; }
    .tabs-container { flex-direction: column; align-items: center; }
    .tab-btn { width: 100%; max-width: 300px; }
    .lightbox-content { width: 100%; margin-top: 80%; transform: translateY(-50%); }
	nav {display:none}
}

/* LOGO STYLES */
.logo-container {
    flex-grow: 1;
}
.site-logo {
    max-height: 60px; /* Limits logo height */
    width: auto;
    display: block;
}