/* ==========================================
   KAONA ROOM - HIDDEN TIKI SPEAKEASY
   Dark, moody, tropical vibes
   ========================================== */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Primary Dark Palette */
    --kaona-black: #0a0a0a;
    --kaona-charcoal: #1a1a1a;
    --kaona-dark-green: #0d1f17;
    --kaona-deep: #050505;

    /* Accent Colors */
    --kaona-gold: #d4a846;
    --kaona-gold-dim: rgba(212, 168, 70, 0.7);
    --kaona-burnt-orange: #e85d04;
    --kaona-coral: #ff6b6b;
    --kaona-jungle-green: #2d5a3d;
    --kaona-teal: #0d7377;

    /* Neon Accents */
    --neon-pink: #ff006e;
    --neon-orange: #ff9500;
    --neon-teal: #00d9ff;

    /* Text Colors */
    --text-primary: #f5f5f0;
    --text-secondary: rgba(245, 245, 240, 0.7);
    --text-muted: rgba(245, 245, 240, 0.5);
    --text-gold: var(--kaona-gold);

    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-jungle: linear-gradient(135deg, #0d1f17 0%, #1a2f23 100%);
    --gradient-gold: linear-gradient(135deg, #d4a846 0%, #b8956a 100%);
    --gradient-tropical: linear-gradient(135deg, #0d7377 0%, #2d5a3d 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --font-accent: 'Bebas Neue', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::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(--kaona-black);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   ACCESSIBILITY - SKIP LINK
   ========================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kaona-gold);
    color: var(--kaona-black);
    padding: 12px 24px;
    z-index: 100000;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--neon-teal);
    outline-offset: 2px;
}

/* Screen Reader Only - Hidden visually but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--kaona-gold), var(--neon-orange), var(--neon-pink));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height var(--transition-fast);
    filter: drop-shadow(0 2px 10px rgba(212, 168, 70, 0.3));
    vertical-align: middle;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--kaona-gold);
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--kaona-gold);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kaona-black);
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6;
    filter: saturate(1.2) contrast(1.1);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Fire glow from bottom */
        radial-gradient(ellipse at 50% 100%, rgba(255, 69, 0, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 90%, rgba(255, 107, 53, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 90%, rgba(255, 149, 0, 0.2) 0%, transparent 40%),
        /* Tropical accents */
        radial-gradient(ellipse at 20% 30%, rgba(45, 90, 61, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(13, 115, 119, 0.2) 0%, transparent 50%),
        /* Base gradient */
        linear-gradient(180deg, var(--kaona-black) 0%, var(--kaona-dark-green) 40%, rgba(30, 15, 10, 1) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.7) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, transparent 30%, transparent 70%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 3;
}

.hero-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.5) 50%, var(--kaona-black) 100%);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--text-primary);
    padding: 2rem;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 30px rgba(212, 168, 70, 0.4));
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 30px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: var(--kaona-gold);
    text-shadow: 0 2px 20px rgba(212, 168, 70, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-secondary);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-right: 2px solid var(--kaona-gold);
    border-bottom: 2px solid var(--kaona-gold);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--kaona-black);
    border-color: var(--kaona-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--kaona-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 168, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--kaona-black);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   SECTIONS - GENERAL
   ========================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--kaona-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-title.light {
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ==========================================
   ABOUT HERO SECTION (Combined)
   ========================================== */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.4) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, transparent 20%, transparent 80%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.about-hero > .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 650px;
}

.about-hero-content .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.about-hero-text {
    margin-bottom: 2rem;
}

.about-hero-text .about-text {
    margin-bottom: 1.25rem;
}

.about-highlight {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--kaona-gold);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 168, 70, 0.3);
}

@media (max-width: 768px) {
    .about-hero-bg {
        background-attachment: scroll;
    }

    .about-hero-overlay {
        background:
            linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.8) 100%);
    }

    .about-hero-content {
        max-width: 100%;
        text-align: center;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-text em {
    color: var(--kaona-gold);
    font-style: italic;
}

.about-text strong {
    color: var(--text-primary);
}

.about-question {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--kaona-gold);
    margin-top: 2rem;
}

.about-image .image-frame {
    position: relative;
    border: 2px solid var(--kaona-gold-dim);
    padding: 1rem;
}

.about-image .image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid var(--kaona-gold-dim);
    pointer-events: none;
}

.image-placeholder {
    background: var(--gradient-jungle);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.placeholder-text {
    font-family: var(--font-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* About grid legacy support */
.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

@media (max-width: 992px) {
    .about-grid.reverse {
        direction: ltr;
    }
}

/* ==========================================
   RESERVATION SECTION - OPENTABLE
   ========================================== */
.reservations {
    background: var(--kaona-black);
}

.reservation-embed {
    max-width: 800px;
    margin: 3rem auto 0;
}

.opentable-container {
    background: var(--kaona-charcoal);
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.opentable-container iframe {
    border: none;
}

/* Fallback link */
.reservation-fallback {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.reservation-fallback a {
    color: var(--kaona-gold);
    font-weight: 600;
    transition: color 0.3s ease;
}

.reservation-fallback a:hover {
    color: var(--neon-orange);
}

/* ==========================================
   HOURS GRID
   ========================================== */
.hours-grid {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    color: var(--text-secondary);
    font-weight: 500;
}

.hours-row .time {
    color: var(--kaona-gold);
    font-family: var(--font-accent);
}

.contact-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--kaona-gold);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-phone {
    margin-top: 0.5rem;
}

.contact-phone a {
    color: var(--kaona-gold);
    font-size: 1.2rem;
    font-weight: 600;
    animation: fadeIn 0.5s ease;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--kaona-charcoal);
    padding: 2rem;
    border-left: 3px solid var(--kaona-gold);
    transition: all var(--transition-fast);
}

.menu-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.menu-card.featured {
    border-left-color: var(--neon-orange);
    background: linear-gradient(135deg, var(--kaona-charcoal) 0%, rgba(232, 93, 4, 0.1) 100%);
}

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

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
}

.menu-item-price {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--kaona-gold);
    letter-spacing: 1px;
}

.menu-item-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.menu-item-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.75rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(212, 168, 70, 0.2);
    color: var(--kaona-gold);
    border: 1px solid var(--kaona-gold-dim);
}

/* ==========================================
   RITUAL SECTION
   ========================================== */
.ritual {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Ritual Video Background */
.ritual-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.ritual-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(1.3) hue-rotate(-10deg);
}

.ritual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13, 115, 119, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(45, 90, 61, 0.3) 0%, transparent 60%),
        var(--kaona-dark-green);
    z-index: 1;
    mix-blend-mode: multiply;
}

.ritual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.ritual-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ritual-intro {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.ritual-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-family: var(--font-accent);
    font-size: 1.5rem;
    border: 2px solid var(--kaona-gold);
    border-radius: 50%;
    color: var(--kaona-gold);
    margin-bottom: 1.5rem;
}

.step-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ritual-hint {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--neon-pink);
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 110, 0.4); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 60px rgba(255, 0, 110, 0.4); }
}

.ritual-cta {
    margin-top: 2rem;
}

.ritual-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================
   VIP SECTION
   ========================================== */
.vip {
    background: var(--kaona-charcoal);
}

.vip-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.vip-intro {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 168, 70, 0.05);
    border-left: 2px solid var(--kaona-gold-dim);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vip-form {
    margin: 2rem 0;
}

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

.vip-form input[type="text"],
.vip-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--kaona-black);
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.vip-form input:focus {
    outline: none;
    border-color: var(--kaona-gold);
}

.vip-form input::placeholder {
    color: var(--text-muted);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--kaona-gold);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.vip-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1.5rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    position: relative;
    background: var(--kaona-black);
    overflow: hidden;
}

/* Contact Video Background */
.contact-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.contact-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.3) contrast(1.1);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.85) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, transparent 30%, transparent 70%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-details .contact-block {
    text-align: center;
}

.contact-details h3 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--kaona-gold);
    margin-bottom: 0.5rem;
}

.hours-compact p {
    color: var(--text-secondary);
    margin: 0.25rem 0;
}

.hours-compact span {
    color: var(--text-primary);
    font-weight: 500;
    display: inline-block;
    min-width: 80px;
}

.contact-info h3 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--kaona-gold);
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.contact-info h3:first-of-type {
    margin-top: 0;
}

.hours-note {
    color: var(--text-secondary);
}

.hours-time {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
}

.hours-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.location-block p {
    color: var(--text-secondary);
}

.address {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.contact-block p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--kaona-gold);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--neon-orange);
}

.contact-alt {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact-alt a {
    color: var(--text-primary);
}

.contact-alt a:hover {
    color: var(--kaona-gold);
}

.map-container {
    position: relative;
    border: 2px solid var(--kaona-gold-dim);
}

.map-container iframe {
    display: block;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, var(--kaona-black));
    text-align: center;
}

.map-overlay p {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-muted);
}

/* ==========================================
   SOCIAL SECTION
   ========================================== */
.social-section {
    background: linear-gradient(180deg, var(--kaona-black) 0%, var(--kaona-dark-green) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--kaona-gold), transparent);
}

.social-content {
    text-align: center;
}

.social-hashtag {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--kaona-gold) 0%, var(--neon-orange) 50%, var(--kaona-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.social-cta {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--text-primary);
    transition: all var(--transition-fast);
    padding: 1rem;
    border-radius: 50%;
    background: rgba(212, 168, 70, 0.1);
    border: 1px solid rgba(212, 168, 70, 0.2);
}

.social-link:hover {
    color: var(--kaona-gold);
    transform: translateY(-5px);
    background: rgba(212, 168, 70, 0.2);
    border-color: var(--kaona-gold);
    box-shadow: 0 10px 30px rgba(212, 168, 70, 0.2);
}

/* ==========================================
   TIKI ELEMENTS & FIRE EFFECTS
   ========================================== */

/* Tiki Icon in Hero */
.tiki-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: flameFlicker 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
}

@keyframes flameFlicker {
    0% { transform: scale(1) rotate(-2deg); opacity: 0.9; }
    50% { transform: scale(1.05) rotate(1deg); opacity: 1; }
    100% { transform: scale(0.98) rotate(-1deg); opacity: 0.95; }
}

/* Hero tagline */
.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 149, 0, 0.6);
}

/* Fire text effect */
.fire-text {
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
    display: inline-block;
}

/* Tiki Divider */
.tiki-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    font-size: 2rem;
}

.tiki-divider span:nth-child(2) {
    animation: flameFlicker 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
}

/* Tiki Frame */
.tiki-frame {
    border-color: var(--neon-orange) !important;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.tiki-frame::before {
    border-color: var(--kaona-gold) !important;
}

.tiki-mask {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 168, 70, 0.5));
}

.flame-row {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    margin-top: 1rem;
}

.flame-row span {
    animation: flameFlicker 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
}

.flame-row span:nth-child(2) {
    animation-delay: 0.3s;
}

.flame-row span:nth-child(3) {
    animation-delay: 0.6s;
}

/* About lead text */
.about-lead {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--kaona-gold);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Fire Button */
.btn-fire {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ffa500 100%);
    border-color: #ff6b35;
    color: var(--kaona-black);
    position: relative;
    overflow: hidden;
}

.btn-fire::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-fire:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 50%, #ffcc00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6), 0 0 60px rgba(255, 149, 0, 0.4);
}

.btn-fire:hover::before {
    left: 100%;
}

/* Legendary menu card */
.menu-card.legendary {
    background: linear-gradient(135deg, var(--kaona-charcoal) 0%, rgba(255, 69, 0, 0.15) 100%);
    border-left-color: #ff4500;
    position: relative;
    overflow: hidden;
}

.menu-card.legendary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4500, #ff6b35, #ffa500, transparent);
}

.card-flame {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    animation: flameFlicker 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
}

/* Ritual Section Flames */
.ritual-flames {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    z-index: 4;
    opacity: 0.6;
}

.flame {
    font-size: 3rem;
    animation: flameFlicker 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
}

.flame-1 { animation-delay: 0s; }
.flame-2 { animation-delay: 0.4s; }
.flame-3 { animation-delay: 0.8s; }

.ritual-secret {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.ritual-whisper {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* VIP Icon */
.vip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
}

.vip-icon span:nth-child(2) {
    animation: flameFlicker 1s ease-in-out infinite alternate;
}

/* Location hint */
.location-hint {
    font-size: 0.9rem;
    color: var(--kaona-gold);
    margin-top: 0.5rem;
}

/* Footer flames */
.footer-flames {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ==========================================
   GALLERY SECTION - FULL WIDTH MARQUEE
   ========================================== */
.gallery-fullwidth {
    position: relative;
    background: var(--kaona-black);
    padding: 80px 0;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.gallery-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* Infinite scrolling marquee */
.gallery-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-marquee::before,
.gallery-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.gallery-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--kaona-black), transparent);
}

.gallery-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--kaona-black), transparent);
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-fullwidth .gallery-item {
    position: relative;
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-fullwidth .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: saturate(0.9);
}

.gallery-fullwidth .gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-fullwidth .gallery-item::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--kaona-gold);
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-fullwidth .gallery-item:hover {
    transform: scale(1.05);
    z-index: 20;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(212, 168, 70, 0.3);
}

.gallery-fullwidth .gallery-item:hover::before {
    opacity: 1;
}

.gallery-fullwidth .gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-fullwidth .gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.2) brightness(0.95);
}

@media (max-width: 768px) {
    .gallery-fullwidth .gallery-item {
        width: 280px;
        height: 360px;
    }

    .gallery-track {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .gallery-fullwidth .gallery-item {
        width: 240px;
        height: 300px;
    }
}

/* About Section Image */
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.tiki-frame {
    overflow: hidden;
}


/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background: var(--kaona-charcoal);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 168, 70, 0.15);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: block;
    width: 100%;
    padding: 1.5rem 2.5rem 1.5rem 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--kaona-gold);
    transition: transform var(--transition-fast);
}

details[open] .faq-question::after {
    content: '\2212';
}

.faq-question:hover {
    color: var(--kaona-gold);
}

.faq-answer {
    padding: 0 0 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-answer a {
    color: var(--kaona-gold);
}

.faq-answer a:hover {
    color: var(--neon-orange);
}

/* ==========================================
   FOOTER NAVIGATION
   ========================================== */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--kaona-gold);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--kaona-deep);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin: 0 auto 1.5rem;
    filter: grayscale(50%) opacity(0.7);
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-credit a {
    color: var(--text-secondary);
}

.footer-credit a:hover {
    color: var(--kaona-gold);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================
   EMAIL POPUP
   ========================================== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.popup-container {
    position: relative;
    background: var(--kaona-charcoal);
    max-width: 450px;
    width: 90%;
    padding: 3rem;
    border: 1px solid var(--kaona-gold-dim);
    transform: translateY(20px);
    transition: transform var(--transition-medium);
    max-height: 90vh;
    overflow-y: auto;
}

.popup.active .popup-container {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.popup-close:hover {
    color: var(--text-primary);
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.popup-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
}

.popup-text {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.popup-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--kaona-black);
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.popup-form input:focus {
    outline: none;
    border-color: var(--kaona-gold);
}

.popup-dismiss {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.popup-dismiss:hover {
    color: var(--text-secondary);
}

.popup-success {
    text-align: center;
    padding: 2rem 0;
}

.popup-success .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.popup-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.popup-success p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Form States */
.form-success {
    color: var(--kaona-gold);
    text-align: center;
    padding: 1rem;
}

.form-error {
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map {
        order: 2;
    }

    .ritual-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vip-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--kaona-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-logo {
        max-width: 250px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map {
        order: -1;
    }

    /* Popup mobile adjustments */
    .popup-container {
        padding: 1.5rem;
        max-height: 85vh;
    }

    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 2.5rem;
        padding: 0.5rem;
        z-index: 1;
    }

    .popup-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .popup-header {
        margin-bottom: 1rem;
    }

    .popup-header h3 {
        font-size: 1.4rem;
    }

    .popup-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* OpenTable mobile adjustments */
    .opentable-container {
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-tab {
        width: 100%;
    }

    /* Popup small screen adjustments */
    .popup-container {
        padding: 1.25rem;
        width: 95%;
    }

    .popup-header h3 {
        font-size: 1.2rem;
    }

    /* OpenTable small screen adjustments */
    .opentable-container {
        padding: 1rem;
    }
}

/* ==========================================
   VIDEO RESPONSIVE & ACCESSIBILITY
   ========================================== */

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-video,
    .ritual-video,
    .contact-video {
        display: none;
    }

    .hero-bg,
    .ritual-bg {
        mix-blend-mode: normal;
    }

    .flame,
    .card-flame,
    .tiki-icon,
    .animate-fade-in,
    .animate-fade-in-delay,
    .animate-fade-in-delay-2,
    .animate-fade-in-delay-3 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Mobile video optimization */
@media (max-width: 768px) {
    .hero-video,
    .contact-video {
        opacity: 0.5;
    }
}
