/* ==========================================
   Nawabhai Restaurant Core CSS Design System
   ========================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Base Reset & Variables */
:root {
    /* Color Palette - Default Royal Dark Vibe */
    --bg-primary: #0a0d1d;
    --bg-secondary: #12162e;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --gold-hover: #F3E5AB;
    
    --accent: var(--gold);
    --accent-rgb: var(--gold-rgb);
    --accent-glow: var(--gold-glow);
    
    --card-bg: rgba(18, 22, 46, 0.6);
    --card-border: rgba(212, 175, 55, 0.15);
    --card-hover-border: rgba(212, 175, 55, 0.4);
    
    --success: #10b981;
    --danger: #ef4444;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.4s ease;
    --transition-fast: 0.2s ease;
    
    --banner-icon: "👑";
    --banner-text: "The Royal Gathering Hub of Unity & Taste";
}

/* --- Festival Theme Overrides --- */

/* 1. Ramzan Theme: Rich Islamic Emerald Green & Gold */
body.festival-ramzan {
    --bg-primary: #03180b;
    --bg-secondary: #062b14;
    --accent: #10b981; /* Emerald green highlight */
    --accent-rgb: 16, 185, 129;
    --accent-glow: rgba(16, 185, 129, 0.35);
    --card-bg: rgba(6, 43, 20, 0.65);
    --card-border: rgba(16, 185, 129, 0.2);
    --card-hover-border: rgba(212, 175, 55, 0.6);
    --banner-icon: "🌙";
    --banner-text: "Ramzan Mubarak! Celebrating Brotherhood & Shared Blessings";
}

/* 2. Diwali Theme: Majestic Violet & Marigold Amber Glow */
body.festival-diwali {
    --bg-primary: #12031c;
    --bg-secondary: #220b33;
    --accent: #f59e0b; /* Amber/Marigold */
    --accent-rgb: 245, 158, 11;
    --accent-glow: rgba(245, 158, 11, 0.45);
    --card-bg: rgba(34, 11, 51, 0.65);
    --card-border: rgba(245, 158, 11, 0.2);
    --card-hover-border: rgba(245, 158, 11, 0.6);
    --banner-icon: "🪔";
    --banner-text: "Shubh Deepavali! Spreading Joy, Light & Royal Taste";
}

/* 3. Lohri Theme: Deep Charcoal & Warm Bonfire Crimson/Orange */
body.festival-lohri {
    --bg-primary: #120502;
    --bg-secondary: #240f08;
    --accent: #ea580c; /* Fire Orange */
    --accent-rgb: 234, 88, 12;
    --accent-glow: rgba(234, 88, 12, 0.4);
    --card-bg: rgba(36, 15, 8, 0.65);
    --card-border: rgba(234, 88, 12, 0.2);
    --card-hover-border: rgba(212, 175, 55, 0.6);
    --banner-icon: "🔥";
    --banner-text: "Happy Lohri! Harvest Warmth, Rhythms & Old Friends";
}

/* 4. Ganesh Chaturthi Theme: Deep Crimson & Vibrant Saffron/Gold */
body.festival-ganesh {
    --bg-primary: #170208;
    --bg-secondary: #2a0512;
    --accent: #dc2626; /* Crimson Red */
    --accent-rgb: 220, 38, 38;
    --accent-glow: rgba(220, 38, 38, 0.4);
    --card-bg: rgba(42, 5, 18, 0.65);
    --card-border: rgba(220, 38, 38, 0.25);
    --card-hover-border: rgba(212, 175, 55, 0.6);
    --banner-icon: "🔱";
    --banner-text: "Ganpati Bappa Morya! Unity, Wisdom & Splendid Flavors";
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-medium);
    position: relative;
}

/* Particle Canvas Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

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

/* Typography Utilities */
.heading-font {
    font-family: var(--font-heading);
}

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

.text-accent {
    color: var(--accent);
    transition: color var(--transition-medium);
}

/* Dynamic Festival Top Banner */
.festival-banner {
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.15), rgba(var(--gold-rgb), 0.2), rgba(var(--accent-rgb), 0.15));
    border-bottom: 1px solid var(--card-border);
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: border-color var(--transition-medium);
}

.festival-banner::before {
    content: var(--banner-icon);
    font-size: 1.1rem;
}

.festival-banner span {
    transition: color var(--transition-medium);
}

/* Glassmorphism Container styling */
.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: background var(--transition-medium), border var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
}

.glass-panel:hover {
    border-color: var(--card-hover-border);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(var(--accent-rgb), 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--gold-rgb), 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ==========================================
   Header & Navigation
   ========================================== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(var(--bg-primary), 0.7);
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color var(--transition-slow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1;
}

.logo span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.2rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links li.active a::after {
    width: 100%;
}

.btn-book-nav {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-medium);
}

.btn-book-nav:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 25px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-medium);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 2rem;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(var(--bg-primary), 0.35), var(--bg-primary) 85%),
                linear-gradient(to top, var(--bg-primary), transparent 40%);
    z-index: 2;
    transition: background-color var(--transition-slow);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tagline-pill {
    background: rgba(var(--gold-rgb), 0.1);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-glow 3s infinite alternate;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b38f1c);
    color: #000;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    transition: var(--transition-medium);
}

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

/* Theme Vibe Switcher Card (Hero Right) */
.switcher-card {
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.switcher-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.switcher-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.vibe-btn {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-medium);
}

.vibe-btn .icon {
    font-size: 1.8rem;
    transition: transform var(--transition-medium);
}

.vibe-btn .label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vibe-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--gold-rgb), 0.3);
    transform: translateY(-3px);
}

.vibe-btn:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

/* Festival theme button states */
.vibe-btn.active[data-festival="default"] {
    background: rgba(var(--gold-rgb), 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}
.vibe-btn.active[data-festival="ramzan"] {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}
.vibe-btn.active[data-festival="diwali"] {
    background: rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}
.vibe-btn.active[data-festival="lohri"] {
    background: rgba(234, 88, 12, 0.15);
    border-color: #ea580c;
    box-shadow: 0 0 15px rgba(234, 88, 12, 0.3);
}
.vibe-btn.active[data-festival="ganesh"] {
    background: rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

/* ==========================================
   Section Layouts General
   ========================================== */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    display: block;
    transition: color var(--transition-medium);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

/* ==========================================
   Vibe / Features Section
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(var(--gold-rgb), 0.1);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: transform var(--transition-medium);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(var(--accent-rgb), 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* ==========================================
   Menu Section (Hyderabadi Nawabi Cuisine)
   ========================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-medium);
}

.menu-tab-btn:hover {
    border-color: rgba(var(--gold-rgb), 0.4);
    color: var(--text-primary);
}

.menu-tab-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: 0 4px 15px var(--gold-glow);
}

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

.menu-item {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.menu-item-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.menu-item-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.menu-item-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.15rem;
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
    margin-top: auto;
}

.menu-item-spicy {
    display: flex;
    gap: 3px;
    color: #ef4444;
    font-size: 0.75rem;
}

.btn-add-menu {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition-fast);
}

.btn-add-menu:hover {
    color: var(--gold);
}

/* ==========================================
   Festivals Section (Unity in Diversity)
   ========================================== */
.festivals-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.festivals-info {
    display: flex;
    flex-direction: column;
}

.festival-description-box {
    margin-top: 1.5rem;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    transition: border-color var(--transition-medium);
}

.festival-description-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.festival-quote {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 1rem;
}

.festivals-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(var(--gold-rgb), 0.2);
}

.festivals-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(0.9);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(var(--bg-primary), 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: background-color var(--transition-slow);
}

.visual-tag {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: color var(--transition-medium);
}

.visual-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.visual-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================
   Hangout & Table Planner Section
   ========================================== */
.planner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.planner-form-container {
    padding: 2.5rem;
    border-radius: 20px;
}

.planner-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.2);
}

.btn-submit-planner {
    background: linear-gradient(135deg, var(--gold), #b38f1c);
    color: #000;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-medium);
    margin-top: 1rem;
}

.btn-submit-planner:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--gold-glow);
}

/* Interactive Ticket (Right) */
.ticket-wrapper {
    perspective: 1000px;
    height: 100%;
}

.ticket-container {
    width: 100%;
    min-height: 480px;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.ticket-container.is-printed {
    animation: ticket-print 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

.ticket-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
}

/* Ticket Front (Before Booking) */
.ticket-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    border: 1px dashed rgba(var(--gold-rgb), 0.4);
    background: rgba(var(--gold-rgb), 0.02);
}

.ticket-placeholder-icon {
    font-size: 4rem;
    color: rgba(var(--gold-rgb), 0.2);
    margin-bottom: 1.5rem;
    animation: float 4s infinite ease-in-out;
}

.ticket-front h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ticket-front p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
}

/* Ticket Back (Printed Pass) */
.ticket-back {
    transform: rotateY(180deg); /* hidden initially unless flipped */
    background: #111;
    border: 2px solid var(--gold);
    color: #fff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(var(--gold-rgb), 0.2);
}

.ticket-back::before, .ticket-back::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--bg-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.ticket-back::before {
    left: -16px;
    border-right: 2px solid var(--gold);
}

.ticket-back::after {
    right: -16px;
    border-left: 2px solid var(--gold);
}

.ticket-dashed-line {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 1px;
    border-top: 2px dashed rgba(var(--gold-rgb), 0.3);
    z-index: 4;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
    padding-bottom: 1rem;
}

.ticket-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.ticket-badge {
    background: var(--accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color var(--transition-medium);
}

.ticket-body {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ticket-info-block {
    display: flex;
    flex-direction: column;
}

.ticket-info-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
}

.ticket-info-value.ticket-guests {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.3rem;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-barcode {
    font-family: 'Libre Barcode 39', 'Courier New', Courier, monospace;
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--text-secondary);
}

.ticket-security {
    text-align: right;
}

.ticket-security span {
    display: block;
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.ticket-security strong {
    font-size: 0.75rem;
    color: #10b981;
}

/* ==========================================
   Reviews / Hangout Memories Slider
   ========================================== */
.reviews-section {
    background: rgba(var(--bg-secondary), 0.3);
    border-top: 1px solid rgba(var(--gold-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.05);
}

.slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
    box-sizing: border-box;
}

.slide-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.slide-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-tag {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   Footer & Contact Info
   ========================================== */
footer {
    background-color: #05070f;
    border-top: 1px solid rgba(var(--gold-rgb), 0.1);
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact-list strong {
    color: var(--text-primary);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.social-icon:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.jai-hind {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    animation: float 3s infinite ease-in-out;
}

/* ==========================================
   Animations Keyframes
   ========================================== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(var(--accent-rgb), 0.1);
        border-color: rgba(var(--accent-rgb), 0.2);
    }
    100% {
        box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.35);
        border-color: rgba(var(--accent-rgb), 0.6);
    }
}

@keyframes ticket-print {
    0% {
        transform: rotateY(180deg) scale(0.9) translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: rotateY(180deg) scale(1) translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-container, .planner-grid, .festivals-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-bg-image {
        width: 100%;
        opacity: 0.2;
        mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .festivals-visual img {
        height: 350px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }
    .nav-links {
        display: none; /* Mobile menu logic should control this */
    }
    .mobile-toggle {
        display: flex;
    }
    .section-title {
        font-size: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Navigation Active state for Mobile */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
        padding: 2rem;
        gap: 1.5rem;
        z-index: 99;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
}
