/* ==========================================================================
   Nhà Hàng Chay Phúc Nguyên - Design System & Custom Styling
   Theme: Zen, Green, Elegant, Modern
   ========================================================================== */

/* --- Custom Variables (Colors & Typography) --- */
:root {
    --primary-deep: #1b4332;       /* Forest green representing peace */
    --primary-brand: #2d6a4f;      /* Brand standard green */
    --primary-light: #52b788;      /* Sage green */
    --primary-soft: #74c69d;       /* Soft leaves accent */
    --bg-mint: #d8f3dc;            /* Mint glow */
    --bg-cream-dark: #f4f1ea;      /* Zen cream background secondary */
    --bg-cream-light: #f9f6f0;     /* Warm cream background primary */
    --accent-gold: #cca43b;        /* Solar gold for premium highlights */
    --accent-gold-light: #e5c158;  /* Light golden tint */
    --text-dark: #2d3142;          /* Charcoal text for readability */
    --text-muted: #6b705c;         /* Sage-gray text */
    --text-light: #ffffff;         /* Pure white */
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --shadow-soft: 0 10px 30px rgba(45, 106, 79, 0.05);
    --shadow-medium: 0 15px 40px rgba(27, 67, 50, 0.08);
    --shadow-float: 0 20px 50px rgba(0, 0, 0, 0.1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --header-height: 80px;
}

/* --- Reset & Global Elements --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

/* --- Typography Helper --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-deep);
}

.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.text-gold { color: var(--accent-gold); }

/* --- Containers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-brand);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(204, 164, 59, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-brand);
    border-color: var(--primary-brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-deep);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-brand);
    margin: 12px auto 20px auto;
    border-radius: var(--border-radius-full);
}

.section-line.bg-gold {
    background-color: var(--accent-gold);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Header Styles (Sticky Glassmorphism)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    background-color: rgba(249, 246, 240, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(45, 106, 79, 0.08);
    height: 70px;
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    border-radius: var(--border-radius-full);
    object-fit: cover;
    transition: var(--transition-smooth);
    border: 2px solid var(--accent-gold);
}

.main-header.scrolled .logo-img {
    transform: scale(0.9);
}

.footer-logo {
    border-color: rgba(255, 255, 255, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.1;
    transition: var(--transition-smooth);
}

.main-header.scrolled .brand-name {
    color: var(--primary-deep);
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-gold);
    line-height: 1;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}

.main-header.scrolled .nav-item {
    color: var(--text-dark);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--accent-gold) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.main-header.scrolled .bar {
    background-color: var(--primary-deep);
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: zoomOutHero 12s infinite alternate ease-in-out;
}

@keyframes zoomOutHero {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero-content {
    max-width: 750px;
}

.hero-badge {
    background-color: rgba(45, 106, 79, 0.35);
    border: 1px solid rgba(116, 198, 157, 0.4);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-mint);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: rgba(8, 28, 21, 0.5);
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--accent-gold);
    padding: 16px 20px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin-bottom: 40px;
    max-width: 650px;
}

.feature-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    display: block;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* ==========================================================================
   Core Values Section
   ========================================================================== */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-cream-light);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(45, 106, 79, 0.04);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 106, 79, 0.1);
}

.value-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-full);
    background-color: var(--bg-mint);
    color: var(--primary-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon-box {
    background-color: var(--primary-brand);
    color: var(--text-light);
    transform: rotateY(180deg);
}

.value-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-deep);
}

.value-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-cream-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.highlight-item {
    background-color: var(--text-light);
    padding: 20px 16px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid var(--accent-gold);
}

.highlight-count {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-brand);
    line-height: 1.2;
    margin-bottom: 4px;
}

.highlight-txt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Gallery / Image style */
.about-gallery {
    position: relative;
}

.gallery-large-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.main-gallery-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-large-wrapper:hover .main-gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(8, 28, 21, 0.85));
    padding: 30px 24px 24px 24px;
    color: var(--text-light);
}

.gallery-caption h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Menu Highlight Section Styles
   ========================================================================== */
.menu-section {
    padding: 100px 0;
    background-color: var(--bg-cream-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--text-light);
    color: var(--text-muted);
    border: 1px solid rgba(45, 106, 79, 0.1);
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--primary-brand);
    color: var(--text-light);
    border-color: var(--primary-brand);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.15);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(45, 106, 79, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 106, 79, 0.08);
}

.menu-img-box {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-cream-dark);
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-img {
    transform: scale(1.08);
}

/* Custom visual dish placeholder using unsplash base */
.custom-dish-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.menu-card:hover .custom-dish-placeholder {
    transform: scale(1.08);
}

.dish-placeholder-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(45, 106, 79, 0.7);
    padding: 15px;
    border-radius: var(--border-radius-full);
    backdrop-filter: blur(5px);
}

.menu-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(8, 28, 21, 0.8);
    backdrop-filter: blur(5px);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.menu-tag.hot {
    background-color: rgba(166, 25, 46, 0.9);
}

.menu-tag.fresh {
    background-color: rgba(45, 106, 79, 0.9);
}

.menu-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-meta {
    margin-bottom: 12px;
}

.menu-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--accent-gold);
}

.menu-price small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.menu-dish-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-deep);
}

.menu-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==========================================================================
   Booking Section Styles
   ========================================================================== */
.booking-section {
    padding: 100px 0;
    position: relative;
    background-image: linear-gradient(rgba(8, 28, 21, 0.9), rgba(8, 28, 21, 0.9)), url('assets/images/restaurant_space.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
}

.booking-container {
    position: relative;
    z-index: 2;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.booking-info-box {
    color: var(--text-light);
}

.booking-info-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-text strong {
    font-size: 1.05rem;
}

/* Booking Form */
.booking-form-box {
    background-color: var(--text-light);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-float);
    color: var(--text-dark);
}

.form-title {
    font-size: 1.75rem;
    color: var(--primary-deep);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-brand);
}

.form-group label i {
    margin-right: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-cream-light);
    border: 1px solid rgba(45, 106, 79, 0.15);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background-color: var(--text-light);
    box-shadow: 0 0 0 3px rgba(204, 164, 59, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ==========================================================================
   Map & Contact Section Styles
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-cream-dark);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.contact-card {
    background-color: var(--text-light);
    padding: 32px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(45, 106, 79, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 106, 79, 0.12);
}

.contact-card-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--border-radius-full);
    background-color: var(--bg-mint);
    color: var(--primary-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-card-icon {
    background-color: var(--primary-brand);
    color: var(--text-light);
    transform: scale(1.08);
}

.contact-card-title {
    font-size: 1.15rem;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.contact-card-info {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 6px;
}

.contact-card-phone {
    display: inline-block;
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-gold-dark);
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.contact-card-phone:hover {
    color: var(--primary-brand);
    transform: scale(1.05);
}

.contact-card-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-brand);
    background-color: var(--bg-mint);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
}

.map-centered-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.map-frame {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--text-light);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer-section {
    background-color: var(--primary-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 4px solid var(--accent-gold);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo-svg.inverted {
    /* Keep SVG white */
}

.brand-name.text-white {
    color: var(--text-light);
}

.brand-sub.text-gold {
    color: var(--accent-gold);
}

.footer-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Link Columns */
.footer-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

/* Working Hours */
.hours-info {
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.hours-row strong {
    color: var(--text-light);
}

/* Social & Contact */
.social-info {
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Bottom Footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.designer-text {
    font-style: italic;
    color: var(--text-muted);
}

/* ==========================================================================
   Booking success Popup Modal Styles
   ========================================================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 28, 21, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-content {
    background-color: var(--bg-cream-light);
    max-width: 550px;
    width: 90%;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(45, 106, 79, 0.1);
    transform: scale(0.85);
    transition: var(--transition-smooth);
}

.booking-modal-overlay.active .booking-modal-content {
    transform: scale(1);
}

.modal-icon-success {
    width: 72px;
    height: 72px;
    background-color: var(--bg-mint);
    color: var(--primary-brand);
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary-deep);
    margin-bottom: 16px;
}

.modal-msg {
    font-size: 0.98rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.modal-msg strong {
    color: var(--primary-brand);
}

.modal-tip {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ==========================================================================
   Scroll To Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-brand);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(204, 164, 59, 0.3);
    transform: translateY(-3px);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Web Design Rules (Mobile-first adaptions)
   ========================================================================== */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    /* Header Adaptation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-cream-light);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    
    .nav-item {
        color: var(--text-dark) !important;
        font-size: 1.15rem;
    }
    
    .btn-book-header {
        display: none; /* Hide on small screen header to avoid crowd */
    }
    
    /* Hamburger toggle animation */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    /* Hero elements size */
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    /* Grids to responsive layout */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-frame {
        height: 400px;
    }
}

@media (max-width: 580px) {
    .values-grid,
    .menu-grid,
    .footer-grid,
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .map-frame {
        height: 340px;
    }
}

/* ==========================================================================
   Menu Flyers Grid & Cards
   ========================================================================== */
.menu-flyers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.menu-flyer-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(45, 106, 79, 0.03);
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.menu-flyer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 106, 79, 0.08);
}

.flyer-img-box {
    position: relative;
    height: 480px; /* tall aspect ratio for flyers */
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-cream-dark);
}

.flyer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-flyer-card:hover .flyer-img {
    transform: scale(1.05);
}

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 28, 21, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.menu-flyer-card:hover .flyer-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 700;
    border: 2px solid var(--text-light);
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
}

.flyer-info {
    padding: 20px;
    text-align: center;
    background-color: var(--text-light);
}

.flyer-title {
    font-size: 1.15rem;
    color: var(--primary-deep);
    margin: 0;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Fullscreen Lightbox Modal
   ========================================================================== */
.lightbox-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 28, 21, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox-modal-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   Flyers Responsive Rules
   ========================================================================== */
@media (max-width: 1024px) {
    .menu-flyers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .flyer-img-box {
        height: 400px;
    }
}

@media (max-width: 580px) {
    .menu-flyers-grid {
        grid-template-columns: 1fr;
    }
    .flyer-img-box {
        height: 360px;
    }
    .lightbox-close {
        top: 16px;
        right: 20px;
        font-size: 2.5rem;
    }
}
