/* ==========================================================================
   Boogie's Diner - Light Red/Navy Brand Design System (Matching Screenshot)
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
    --bg-dark: #0a0a0c;
    --accent-neon-blue: #00a2ff;
    --text-white: #ffffff;
    --text-muted: #a0a5b5;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-headings: 'Bebas Neue', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    --container-width: 1200px;
    --box-shadow: 0 4px 20px rgba(0, 162, 255, 0.15);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-muted);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
}

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

/* --- Top Announcement Bar --- */
.announcement-bar {
    background-color: var(--accent-neon-blue);
    color: var(--bg-dark);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

/* Global scrolled state to collapse announcement bar */
.site-header.scrolled .announcement-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
}

/* --- Header & Navigation (Stacked Centered Layout) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.main-header {
    position: relative;
    width: 100%;
    background: linear-gradient(rgba(10, 10, 12, 0.95), rgba(7, 7, 9, 0.98)), 
                radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 100% 100%, 24px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 162, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 162, 255, 0.15);
    transition: all 0.3s ease;
}

.logo-link {
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease, transform 0.3s ease;
}

.logo-img {
    transition: height 0.3s ease, width 0.3s ease, filter 0.3s ease;
}

.header-container {
    transition: padding 0.3s ease;
}

/* Offset the fixed header height on the main content by default */
.content-wrapper {
    padding-top: 268px; /* Tablet & Desktop default */
    transition: padding-top 0.3s ease;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding-top: 175px; /* Mobile default (adjusted for wrapped announcement text) */
    }
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-link {
    display: block;
    margin-bottom: 0.75rem;
    transition: transform var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.03);
}

.logo-img {
    width: 140px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 162, 255, 0.45));
}

.nav-menu {
    width: 100%;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 0.5rem 0;
}

.nav-menu a {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
    transition: color 0.1s ease, text-shadow 0.1s ease, transform 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu a:hover {
    color: #00a2ff;
    text-shadow: 0 0 12px rgba(0, 162, 255, 0.95), 0 0 20px rgba(0, 162, 255, 0.6);
    transform: scale(1.05);
}

.nav-menu a.active {
    color: var(--accent-neon-blue);
    text-shadow: 0 0 8px rgba(0, 162, 255, 0.7);
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    position: absolute;
    top: 1.8rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--accent-neon-blue);
    box-shadow: 0 0 5px var(--accent-neon-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem 2rem;
        flex-direction: row;
        justify-content: center;
    }
    
    .logo-link {
        margin-bottom: 0;
    }
    
    .logo-img {
        width: 100px;
    }
    
    .nav-toggle {
        display: flex;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: linear-gradient(rgba(10, 10, 12, 0.97), rgba(7, 7, 9, 0.99)), 
                    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 24px 24px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 162, 255, 0.6);
        padding: 1.5rem 2rem;
        z-index: 1005;
        box-shadow: 0 10px 25px rgba(0, 162, 255, 0.15);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        padding: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }

    /* Transform Hamburger icon when active */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .header-divider {
        display: none;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px; /* Capsule buttons */
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-neon-blue);
    color: #0a0a0c;
    border: 2px solid var(--accent-neon-blue);
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.4);
    text-shadow: none;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-neon-blue);
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: #ffffff;
    color: var(--brand-red);
}

.btn-white:hover {
    background-color: var(--brand-red);
    color: #ffffff;
}

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

/* --- Layout Wrapper --- */
.content-wrapper {
    min-height: calc(100vh - 250px);
}

/* --- Hero Showcase (Full Bleed Split Left Image/Right Card) --- */
.hero {
    position: relative;
    background-color: var(--bg-alt);
    padding: 0;
    display: flex;
    min-height: 600px;
}

.hero-layout {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

@media(min-width: 992px) {
    .hero-layout {
        flex-direction: row;
        align-items: stretch;
    }
}

.hero-image-side {
    flex: 1.2;
    height: 400px;
    box-shadow: none;
    border-radius: 0;
}

@media(min-width: 992px) {
    .hero-image-side {
        height: auto;
    }
}

.hero-burger-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-side {
    flex: 1;
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 4rem 3rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-card-logo {
    max-height: 80px;
    margin-bottom: 1.5rem;
}

.hero-card-tag {
    background-color: var(--brand-red);
    color: #ffffff;
    font-weight: 800;
    padding: 0.4rem 1.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-card-hours {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 1rem;
}

.hero-card-text {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    max-width: 380px;
}

/* --- Features & Story Section (Based on Screenshot) --- */
.story-section {
    padding: 5rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 768px) {
    .story-section {
        grid-template-columns: 1.2fr 1fr;
    }
}

.story-subtitle {
    color: var(--brand-red);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.story-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.story-text {
    color: var(--color-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.story-image-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Middle Banners (Parallax / Daily Specials) --- */
.middle-banner {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    background-color: var(--bg-dark-navy);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-image: linear-gradient(rgba(11, 21, 34, 0.8), rgba(11, 21, 34, 0.85));
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.banner-title {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
}

/* --- Services & Fresh Foods Grid --- */
.services-section {
    padding: 5rem 2rem;
    background-color: var(--bg-alt);
}

.services-layout {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr 1.2fr;
    }
}

.services-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 350px;
}

.services-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-content h2 {
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent-neon-blue);
    text-shadow: 0 0 8px rgba(0, 162, 255, 0.35);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Grid Display Sections (Our Menus & Gaming Area) --- */
.grid-section {
    padding: 5rem 2rem;
    text-align: center;
}

.grid-section-subtitle {
    color: var(--brand-red);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.grid-section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.cards-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.card-item:hover {
    transform: translateY(-5px);
}

.card-image-box {
    height: 250px;
    overflow: hidden;
    background-color: #ddd;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-banner {
    background-color: var(--brand-blue);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.card-item:hover .card-banner {
    background-color: var(--brand-blue-hover);
}

/* ============================================================
   INSTAGRAM MOSAIC GRID BANNER — #BOOGIESONMAIN
   ============================================================ */

.insta-mosaic {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* No side margins — full viewport bleed */
}

/* ── 5-Column Mosaic Grid ── */
.insta-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 340px;
}

/* ── Individual Image Frame ── */
.mosaic-frame {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(0.85);
    transform: scale(1.04);
    transition:
        filter 0.45s ease,
        transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark masking overlay per frame */
.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.48);
    transition: background 0.4s ease;
    pointer-events: none;
}

/* ── Per-Frame Hover: reveal vibrant color + neon glow outline ── */
.mosaic-frame:hover .mosaic-img {
    filter: brightness(1.1) saturate(1.2);
    transform: scale(1.0);
}

.mosaic-frame:hover .mosaic-overlay {
    background: rgba(10, 10, 12, 0.05);
}

.mosaic-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 0px solid rgba(0, 162, 255, 0);
    transition: border 0.35s ease, box-shadow 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

.mosaic-frame:hover::after {
    border: 2px solid rgba(0, 162, 255, 0.7);
    box-shadow: inset 0 0 18px rgba(0, 162, 255, 0.2);
}

/* ── Floating Center Badge (absolute, centered over the grid) ── */
.insta-floating-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none; /* let mouse events pass to frames behind */
}

.insta-badge-inner {
    pointer-events: auto; /* re-enable for the badge itself */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
    padding: 2.5rem 3rem;
    background: rgba(7, 7, 9, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 162, 255, 0.22);
    border-radius: 6px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 162, 255, 0.08);
    max-width: 420px;
    width: 90%;
}

/* Instagram brand icon at top of badge */
.insta-brand-icon {
    font-size: 2rem;
    color: #00a2ff;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.6);
    line-height: 1;
    margin-bottom: 0.25rem;
}

/* Hashtag heading */
.insta-hashtag {
    font-family: var(--font-headings);
    font-size: 2.6rem;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* Tagline copy */
.insta-tagline {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.5;
}

/* Capsule CTA Button */
.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px; /* capsule */
    border: 1.5px solid #00a2ff;
    background: transparent;
    color: #00a2ff;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0 0 6px rgba(0, 162, 255, 0.3);
    transition: all 0.3s ease;
}

.insta-follow-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.insta-follow-btn:hover {
    background: rgba(0, 162, 255, 0.12);
    color: #ffffff;
    border-color: #00a2ff;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.7);
    box-shadow:
        0 0 18px rgba(0, 162, 255, 0.4),
        inset 0 0 10px rgba(0, 162, 255, 0.08);
}

.insta-follow-btn:hover i {
    transform: scale(1.15) rotate(-8deg);
}

/* ── Responsive: Tablet (3 visible frames) ── */
@media (max-width: 992px) {
    .insta-mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 280px;
    }

    /* Hide frames 4 & 5 on tablet */
    .mosaic-frame:nth-child(n+4) {
        display: none;
    }

    .insta-badge-inner {
        padding: 2rem 2rem;
    }

    .insta-hashtag {
        font-size: 2rem;
    }
}

/* ── Responsive: Mobile (2 visible frames) ── */
@media (max-width: 600px) {
    .insta-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 240px;
    }

    /* Hide frames 3–5 on mobile */
    .mosaic-frame:nth-child(n+3) {
        display: none;
    }

    .insta-badge-inner {
        padding: 1.5rem 1.25rem;
        gap: 0.5rem;
    }

    .insta-hashtag {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .insta-follow-btn {
        font-size: 0.72rem;
        padding: 0.6rem 1.2rem;
    }
}


/* --- Page Template Common Styles --- */
.page-intro {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #0d0d11;
    border-bottom: 2px solid var(--accent-neon-blue);
    box-shadow: 0 5px 20px rgba(0, 162, 255, 0.15);
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.page-title {
    font-family: var(--font-headings);
    font-size: 4rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
}

.page-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
    max-width: 700px;
}

/* Neon Badge for page intro */
.neon-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 1px solid var(--accent-neon-blue);
    color: var(--accent-neon-blue);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.2);
    text-shadow: 0 0 5px rgba(0, 162, 255, 0.4);
}

/* --- Menu Page Styles --- */
.menu-display {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
}

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.menu-section-title {
    font-size: 2.2rem;
    color: var(--text-white);
    font-family: var(--font-headings);
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 0.85rem;
    margin-bottom: 2.5rem;
    border-left: none;
    padding-left: 0;
    text-transform: uppercase;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 8px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M 0,5 Q 25,2 50,6 T 100,4' stroke='%2300a2ff' stroke-width='4' fill='none' stroke-linecap='round' /></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 162, 255, 0.15);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-neon-blue);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.2);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-popular {
    background-color: rgba(0, 162, 255, 0.15);
    color: var(--accent-neon-blue);
    border: 1px solid rgba(0, 162, 255, 0.3);
}

.tag-spicy {
    background-color: rgba(255, 107, 74, 0.15);
    color: #ff6b4a;
    border: 1px solid rgba(255, 107, 74, 0.3);
}

.menu-item-price {
    font-weight: 700;
    color: var(--accent-neon-blue);
    font-size: 1.2rem;
    text-shadow: 0 0 6px rgba(0, 162, 255, 0.4);
}

.menu-item-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Visual Category Overhaul Banners --- */
.menu-category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.category-banner-card {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 162, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.category-banner-title {
    color: var(--text-white);
    font-family: var(--font-headings);
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.8), 0 2px 15px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.category-bottom-notice {
    width: 100%;
    background-color: rgba(0, 162, 255, 0.04);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- Contact & Location Styles --- */
.contact-details {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media(min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info-panel,
.contact-form-panel {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--box-shadow);
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.address-line {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.mini-map-placeholder {
    height: 250px;
    background-color: var(--bg-alt);
    border-radius: var(--border-radius-sm);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.map-art {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-pin {
    font-size: 2.5rem;
    animation: bounce 2s infinite ease-in-out;
}

.map-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 1rem;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fact-item h4 {
    color: var(--bg-dark-navy);
    margin-bottom: 0.25rem;
}

.fact-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Reservation Form */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width: 576px) {
    .form-group-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-dark-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--color-text);
    padding: 0.85rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 5px rgba(230, 30, 42, 0.25);
}

/* ── Location Address Banner (sits above footer, border-bottom intentionally removed) ── */
.footer-location-banner {
    width: 100%;
    padding: 1.1rem 2rem;
    text-align: center;
    color: var(--accent-neon-blue);
    font-family: var(--font-headings);
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-shadow: 0 0 6px rgba(0, 162, 255, 0.5);
    background-color: #070709;
    border-top: 1px solid rgba(0, 162, 255, 0.15);
    /* No border-bottom — the footer's 2px neon border-top acts as the divider */
}

/* ============================================================
   SITE FOOTER — Premium 3-Col Dark Charcoal Design System
   ============================================================ */

.site-footer {
    background-color: #070709;
    color: #a0a8b8;
    font-family: var(--font-primary);
    border-top: 2px solid #00a2ff;
    box-shadow: 0 -4px 20px rgba(0, 162, 255, 0.18);
    padding-top: 5rem;
}

/* ── Inner 3-Column Grid ── */
.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 3.5rem;
}

/* ── Shared Column Styles ── */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* ── Column Headings ── */
.footer-heading {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.75rem 0;
    position: relative;
    padding-bottom: 0.85rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: #00a2ff;
    box-shadow: 0 0 8px rgba(0, 162, 255, 0.6);
    border-radius: 2px;
}

/* ── Col 1 · Brand ── */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.85;
}

.footer-logo {
    height: 64px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(0, 162, 255, 0.25));
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 2rem 0;
    max-width: 260px;
}

/* Social Badges */
.footer-socials {
    display: flex;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #8a95a8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-badge:hover {
    color: #00a2ff;
    background-color: rgba(0, 162, 255, 0.1);
    border-color: rgba(0, 162, 255, 0.4);
    text-shadow: 0 0 8px #00a2ff;
    box-shadow: 0 0 12px rgba(0, 162, 255, 0.25);
    transform: translateY(-2px);
}

/* ── Col 2 · Quick Links ── */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 0;
    transition: all 0.25s ease;
    position: relative;
}

.footer-nav-link i {
    font-size: 0.65rem;
    color: #00a2ff;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
}

.footer-nav-link:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-nav-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* ── Col 3 · Contact ── */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(0, 162, 255, 0.08);
    border: 1px solid rgba(0, 162, 255, 0.2);
    color: #00a2ff;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #4b5563;
    margin-bottom: 0.2rem;
}

.contact-value {
    display: block;
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.5;
}

.contact-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.contact-link:hover {
    color: #00a2ff;
    text-shadow: 0 0 6px rgba(0, 162, 255, 0.4);
}

/* ── Footer Bottom Socket ── */
.footer-socket {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.4rem 2rem;
    background-color: rgba(0, 0, 0, 0.25);
}

.footer-socket-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright,
.footer-attribution {
    margin: 0;
    font-size: 0.8rem;
    color: #4b5563;
}

.nexus-link {
    color: #4d9de0;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.25s ease;
}

.nexus-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00a2ff;
    transition: width 0.3s ease;
}

.nexus-link:hover {
    color: #00a2ff;
}

.nexus-link:hover::after {
    width: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-tagline {
        margin-bottom: 0;
    }

    .footer-socials {
        margin-top: 0;
        padding-top: 0;
        margin-left: auto;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 3rem;
    }

    .footer-col--brand {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-socials {
        margin-left: 0;
    }

    .footer-socket-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}



/* --- Responsive Nav Bar Drawer --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    

    
    .hero-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-image-side {
        height: 300px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
}

/* Featured Categories Grid & Widescreen Cards */
.featured-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 2.5rem auto 3.5rem;
    padding: 0 1rem;
}

@media(min-width: 768px) {
    .featured-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.homepage-featured-tile {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 162, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.homepage-featured-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 12, 0.45);
    transition: all 0.35s ease;
    z-index: 1;
}

.homepage-featured-tile:hover {
    transform: scale(1.04);
    border-color: var(--accent-neon-blue);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.4);
}

.homepage-featured-tile:hover::before {
    background-color: rgba(10, 10, 12, 0.25);
}

.homepage-featured-tile .tile-title {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 6px rgba(0, 162, 255, 0.7);
    z-index: 2;
    transition: all 0.35s ease;
}

.homepage-featured-tile:hover .tile-title {
    text-shadow: 0 0 12px var(--accent-neon-blue);
}

.cta-menu-container {
    text-align: center;
    margin-top: 1rem;
}

.btn-view-full-menu {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: transparent;
    border: 2px solid var(--accent-neon-blue);
    color: var(--accent-neon-blue);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    box-shadow: 0 0 8px rgba(0, 162, 255, 0.15);
    text-shadow: 0 0 4px var(--accent-neon-blue);
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-view-full-menu:hover {
    background-color: var(--accent-neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.4);
    text-shadow: none;
}

/* Filterable Gallery Page Styles */
.gallery-filter-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 162, 255, 0.15);
    padding-bottom: 1.5rem;
    width: 100%;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(0, 162, 255, 0.2);
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.65rem 1.75rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--accent-neon-blue);
    border-color: var(--accent-neon-blue);
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.25);
    text-shadow: 0 0 4px var(--accent-neon-blue);
}

.gallery-responsive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width: 576px) {
    .gallery-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px) {
    .gallery-responsive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card-item {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(0, 162, 255, 0.15);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-card-item:hover {
    border-color: var(--accent-neon-blue);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.4);
}

.gallery-card-image-box {
    height: 250px;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card-item:hover .gallery-card-img {
    transform: scale(1.05);
}

.gallery-card-caption {
    padding: 1.25rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 162, 255, 0.1);
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-box {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoomIn 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 162, 255, 0.25);
    box-shadow: 0 0 30px rgba(0, 162, 255, 0.3);
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 162, 255, 0.15);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, text-shadow 0.2s;
    outline: none;
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--accent-neon-blue);
    text-shadow: 0 0 10px var(--accent-neon-blue);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 162, 255, 0.2);
    color: var(--text-muted);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
    z-index: 2010;
}

.lightbox-nav:hover {
    color: var(--accent-neon-blue);
    border-color: var(--accent-neon-blue);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    .lightbox-prev {
        left: 0.5rem;
    }
    .lightbox-next {
        right: 0.5rem;
    }
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
    .lightbox-content-box {
        max-width: 95%;
    }
}

/* --- Advanced Spatial Depth & Staggered Hero Slider Styles --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #0a0a0c;
}

/* Subtle Chalkboard Grid Overlay Pattern */
.hero-grid-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 4;
    pointer-events: none;
}

/* Abstract Floating Branding Layer */
.hero-floating-branding {
    position: absolute;
    top: 45%;
    right: 8%;
    width: 450px;
    height: 450px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 5;
    transform: rotate(-12deg);
    transition: transform 0.2s ease-out; /* Smooth transition for cursor move */
}

.hero-floating-branding img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Cinematic Ken Burns Zoom (Layer 1) */
.hero-slide-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
}

.hero-slide.active .hero-slide-bg {
    animation: kenBurnsZoom 8s ease-out forwards;
}

@keyframes kenBurnsZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

/* Asymmetric Content Layout */
.hero-slide-content {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 6;
}

.hero-text-block {
    max-width: 65%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}



/* Layer 2: Oversized Heading - slides in from left 200ms delay */
.hero-title {
    font-family: var(--font-headings);
    font-size: 5.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 0.95;
    text-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateX(-40px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.8s ease-out 0.2s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateX(0);
}

/* Layer 3: Subtitle & CTA Button - 500ms delay */
.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0;
    transform: translateY(25px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 0.8s ease-out 0.5s;
}

.hero-slide.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Neon sign flickering power-on animation */
.neon-flicker {
    color: var(--accent-neon-blue);
}

.hero-slide.active .neon-flicker {
    animation: neonPowerOn 1.5s ease-out forwards;
}

@keyframes neonPowerOn {
    0% { opacity: 0.3; text-shadow: none; }
    15% { opacity: 1; text-shadow: 0 0 4px var(--accent-neon-blue); }
    20% { opacity: 0.2; text-shadow: none; }
    30% { opacity: 0.8; text-shadow: 0 0 6px var(--accent-neon-blue); }
    35% { opacity: 0.4; text-shadow: none; }
    45% { opacity: 1; text-shadow: 0 0 10px var(--accent-neon-blue), 0 0 20px rgba(0, 162, 255, 0.5); }
    100% { opacity: 1; text-shadow: 0 0 8px var(--accent-neon-blue), 0 0 15px rgba(0, 162, 255, 0.4); }
}

/* Modern Interactive Angled CTA Button */
.hero-cta-btn {
    display: inline-block;
    position: relative;
    background: transparent;
    border: 2px solid var(--accent-neon-blue);
    color: var(--text-white);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
    padding: 0.9rem 2.5rem;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    border-radius: var(--border-radius-sm);
    z-index: 10;
    transform: skewX(-8deg);
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.15);
    opacity: 0;
    transform: translateY(25px) skewX(-8deg);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.55s, opacity 0.8s ease-out 0.55s, box-shadow 0.3s;
}

.hero-slide.active .hero-cta-btn {
    opacity: 1;
    transform: translateY(0) skewX(-8deg);
}

.hero-cta-btn span {
    display: block;
    transform: skewX(8deg);
    transition: color 0.3s;
    position: relative;
    z-index: 2;
}

/* Double-border accent */
.hero-cta-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid rgba(0, 162, 255, 0.3);
    z-index: 1;
    pointer-events: none;
    transition: border-color 0.3s;
}

/* Liquid glowing pulse center outward transition */
.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--accent-neon-blue);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-cta-btn:hover {
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.6);
}

.hero-cta-btn:hover::before {
    width: 150%;
    height: 300%;
    border-radius: 0;
}

.hero-cta-btn:hover span {
    color: var(--bg-dark);
}

.hero-cta-btn:hover::after {
    border-color: rgba(10, 10, 12, 0.3);
}

/* Navigation controls styles */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 12, 0.5);
    border: 2px solid var(--accent-neon-blue);
    border-radius: 50%;
    color: var(--accent-neon-blue);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    outline: none;
}

.slider-nav:hover {
    background: var(--accent-neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-neon-blue);
}

.slider-nav-prev {
    left: 2rem;
}

.slider-nav-next {
    right: 2rem;
}

.slider-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--accent-neon-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--accent-neon-blue);
    box-shadow: 0 0 10px var(--accent-neon-blue);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-text-block {
        max-width: 80%;
    }
    
    .hero-floating-branding {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-slide-content {
        padding: 0 1.5rem;
    }
    
    .hero-text-block {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slider-nav {
        display: none;
    }
    
    .hero-floating-branding {
        display: none;
    }
}

/* --- Premium Arena & Lounge Spotlight Styles --- */
.lounge-arena-spotlight {
    background-color: #0a0a0c;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.lounge-arena-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 4rem;
    align-items: center;
}

.lounge-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.spotlight-subtitle {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spotlight-title {
    font-family: var(--font-headings);
    font-size: 4rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 0.95;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

/* Electric blinking neon-blue tag line */
.spotlight-neon-tag {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-neon-blue);
    letter-spacing: 2px;
    animation: spotlightNeonFlicker 2s infinite alternate;
}

@keyframes spotlightNeonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 4px rgba(0, 162, 255, 0.6), 0 0 10px rgba(0, 162, 255, 0.4);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

.spotlight-desc {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Sharp, transparent CTA button with neon-blue border */
.spotlight-cta-btn {
    display: inline-block;
    position: relative;
    background: transparent;
    border: 2px solid var(--accent-neon-blue);
    color: var(--text-white);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 0.8rem 2.2rem;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    border-radius: var(--border-radius-sm);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.1);
    transition: all 0.3s ease;
}

.spotlight-cta-btn:hover {
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
    background-color: var(--accent-neon-blue);
    color: var(--bg-dark);
}

/* Right Column: Media Masonry Showcase */
.lounge-media-block {
    position: relative;
}

.masonry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.masonry-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.05);
    transition: filter 0.4s ease;
}

/* Asymmetric offset masonry offsets */
.masonry-item.item-left {
    transform: translateY(-20px);
}

.masonry-item.item-right {
    transform: translateY(20px);
}

.masonry-item:hover {
    transform: translateY(var(--hover-translate, -5px)) scale(1.02);
    border-color: var(--accent-neon-blue);
    box-shadow: 0 0 25px rgba(0, 162, 255, 0.5);
}

.masonry-item.item-left:hover {
    --hover-translate: -25px;
}

.masonry-item.item-right:hover {
    --hover-translate: 15px;
}

.masonry-item:hover img {
    filter: brightness(1) contrast(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .lounge-arena-container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .lounge-text-block {
        align-items: center;
        text-align: center;
    }
    
    .masonry-item.item-left {
        transform: translateY(-10px);
    }
    
    .masonry-item.item-right {
        transform: translateY(10px);
    }
    
    .masonry-item.item-left:hover {
        --hover-translate: -15px;
    }
    
    .masonry-item.item-right:hover {
        --hover-translate: 5px;
    }
}

@media (max-width: 768px) {
    .spotlight-title {
        font-size: 3rem;
    }
    
    .masonry-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .masonry-item.item-left,
    .masonry-item.item-right {
        transform: translateY(0);
    }
    
    .masonry-item.item-left:hover,
    .masonry-item.item-right:hover {
        --hover-translate: -5px;
    }
}

/* --- Order Online CTA Block Styles --- */
.order-online-cta-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.cta-heading {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

.cta-subtitle {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--text-white);
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-glow-btn {
    display: inline-block;
    position: relative;
    background: transparent;
    border: 2px solid var(--accent-neon-blue);
    color: var(--text-white);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
    padding: 0.9rem 2.5rem;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    border-radius: var(--border-radius-sm);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-glow-btn span {
    position: relative;
    z-index: 2;
}

.cta-glow-btn:hover {
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.6);
    background-color: var(--accent-neon-blue);
    color: var(--bg-dark);
}

/* --- Mobile Sticky Header Scroll Layout Transitions --- */
@media (max-width: 768px) {
    /* Tighten vertical padding of the navigation container */
    .site-header.scrolled .header-container {
        padding: 0.5rem 2rem;
    }

    /* Adjust page content padding-top offset when header collapses */
    .site-header.scrolled ~ .content-wrapper {
        padding-top: 114px; /* 8px top + 98px logo + 8px bottom = 114px */
    }
}

/* --- Tablet & Desktop Sticky Header Scroll Layout Transitions --- */
@media (min-width: 769px) {
    /* Scale and fade the primary logo container out smoothly */
    .site-header.scrolled .logo-link {
        opacity: 0;
        visibility: hidden;
        height: 0;
        margin-top: 0;
        margin-bottom: 0;
        transform: scale(0.8);
        pointer-events: none;
    }

    /* Collapse the header container padding to make it a compact bar */
    .site-header.scrolled .header-container {
        padding: 0.5rem 2rem;
    }

    /* Collapse the page padding in sync with the header height reduction */
    .site-header.scrolled ~ .content-wrapper {
        padding-top: 64px;
    }
}
