:root {
    /* Color Palette */
    --clr-bg: #111111;
    --clr-bg-alt: #1a1a1a;
    --clr-bg-card: #222222;
    --clr-text: #f0f0f0;
    --clr-text-muted: #999999;
    --clr-primary: #d4af37; /* Elegant Gold */
    --clr-primary-glow: rgba(212, 175, 55, 0.4);
    --clr-secondary: #e5c158; /* Metallic Gold */
    --clr-accent: #ffffff; /* White Accent */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-impact: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Fluid Spacing: Scales smoothly from 60px on mobile to 120px on desktop */
    --section-padding: clamp(60px, 8vw, 120px) 0;
    --container-padding: clamp(1rem, 5vw, 2rem);
    
    --nav-height: clamp(60px, 8vh, 80px);
    --radius: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    /* Spotlight Default Coordinates */
    --mouse-x: -1000px;
    --mouse-y: -1000px;
}

/* Typography Utility */
.text-secondary {
    color: var(--clr-secondary);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1.2;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.container.full-width {
    max-width: 1400px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 3rem;
}
.section-header h3 {
    color: var(--clr-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.section-header h2 {
    /* Fluid typography for headers */
    font-size: clamp(2rem, 5vw, 3.5rem); 
    font-weight: 800;
}
.section-header.center {
    text-align: center;
}

/* =========================================
   BUTTONS
========================================= */
.cta-button {
    display: inline-block;
    /* Increased padding for fat-finger mobile tapping */
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.primary {
    background-color: var(--clr-primary);
    color: #111;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.cta-button.primary:hover {
    background-color: var(--clr-secondary);
    box-shadow: 0 6px 12px var(--clr-primary-glow);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}
.cta-button.secondary:hover {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
    box-shadow: 0 4px 12px var(--clr-primary-glow);
}

/* =========================================
   NAVIGATION BAR
========================================= */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    /* ONLY transition the properties that actually change */
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-bottom-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                backdrop-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    border-bottom: 1px solid transparent; /* Prevents border pop-in */
}
#navbar.scrolled {
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-family: var(--font-impact);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform-origin: center left;
}
.mic-icon {
    width: 32px;
    height: 32px;
    color: var(--clr-primary);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.mic-icon:hover {
    transform: scale(1.1) rotate(15deg);
    color: var(--clr-secondary);
}
.logo-text {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.logo-text:hover {
    color: var(--clr-primary);
}

/* =========================================
   JOKE MODAL
========================================= */
.joke-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}
.joke-modal.active {
    opacity: 1;
    visibility: visible;
}
.joke-paper {
    background: #f4ecd8;
    color: #2c2b29;
    padding: 3rem 2.5rem 3rem 3.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2rem;
    text-align: left;
    max-width: 550px;
    width: 90%;
    border-radius: 2px 5px 5px 2px;
    box-shadow: 8px 10px 30px rgba(0, 0, 0, 0.7), 
                inset 10px 0 30px rgba(180, 160, 130, 0.15);
    position: relative;
    /* Authentic lined notebook paper */
    background-image: 
        linear-gradient(90deg, rgba(200, 100, 100, 0.4) 2px, transparent 2px),
        repeating-linear-gradient(transparent, transparent 1.95rem, rgba(140, 170, 190, 0.5) 1.95rem, rgba(140, 170, 190, 0.5) 2rem);
    background-size: 30px 100%, 100% 2rem;
    background-position: 2.5rem 0, 0 1rem;
    opacity: 0; 
    transform: translateY(30px) rotate(1deg);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.joke-paper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    height: 35px;
    background: rgba(225, 220, 200, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), inset 0 0 5px rgba(0,0,0,0.05);
    transform: rotate(-2deg);
    border-radius: 1px;
}

.joke-modal.active .joke-paper {
    opacity: 1;
    transform: translateY(0) rotate(-1.5deg);
}

.joke-modal.closing .joke-paper {
    opacity: 0;
    transform: translateY(20px) rotate(1deg);
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-secondary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--clr-secondary);
}
.nav-links a:hover {
    color: #fff;
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* =========================================
   HOME (HERO) SECTION
========================================= */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    -webkit-mask-image: radial-gradient(circle 350px at var(--mouse-x, -1000px) var(--mouse-y, -1000px), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 350px at var(--mouse-x, -1000px) var(--mouse-y, -1000px), black 0%, transparent 100%);
    transition: opacity 0.3s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.3) 0%, rgba(17,17,17,1) 100%), 
                radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
    animation: fadeIn 1s ease-out forwards;
}

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

.hero-content h1 {
    font-family: var(--font-impact);
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 6px;
    color: #ffffff;
    margin-bottom: -10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content .hero-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--clr-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--clr-text);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* =========================================
   ABOUT US SECTION
========================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

@media (min-width: 900px) {
    .about-overlap-layout {
        grid-template-columns: 5fr 4fr;
        gap: 0;
    }
    .about-text-card {
        margin-left: -5rem; /* Only apply overlap on desktop */
    }
}

.about-img-full {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: block;
}

.about-text-card {
    background: var(--clr-bg-card);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
}

.about-text-card .overline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.about-text-card .impact-header {
    font-family: var(--font-impact);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--clr-text);
    letter-spacing: 1px;
}

.about-text-card p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
}
.about-text-card p:last-of-type {
    margin-bottom: 2.5rem;
}

.about-text-card strong {
    color: #fff;
}

/* =========================================
   GALLERY SLIDESHOW
========================================= */
.artists-section {
    background-color: var(--clr-bg-alt);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
}

.slideshow-container {
    display: flex;
    gap: 1.5rem;
    padding: 80px 1rem; /* Super generous top/bottom padding so highly scaled items don't clip */
    margin: -80px 0; /* Visually offset the padding so layout remains identical */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide IE/Edge */
}

.slideshow-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.slide {
    flex: 0 0 320px;
    height: 320px;
    scroll-snap-align: center;
    background-color: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-origin: center center;
}
.slide:hover, .slide.touched {
    transform: scale(1.45);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    border-color: var(--clr-primary);
    z-index: 50;
}
.gallery-vid, .gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.gallery-vid {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.slide:hover .gallery-vid, .slide.touched .gallery-vid {
    opacity: 1;
}

.media-placeholder {
    color: var(--clr-secondary);
    font-size: 1.25rem;
    font-family: var(--font-impact);
    letter-spacing: 2px;
}

/* Premium dark simple gradients for missing placeholder images */
.gradient-bg-1 { background: linear-gradient(135deg, #1f1f1f, #2a2a2a); }
.gradient-bg-2 { background: linear-gradient(135deg, #151515, #222222); }
.gradient-bg-3 { background: linear-gradient(135deg, #1a1a1a, #252525); }
.gradient-bg-4 { background: linear-gradient(135deg, #121212, #1c1c1c); }

/* =========================================
   EVENTS SECTION
========================================= */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    flex-direction: column; /* Default to mobile stacked */
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
    background: #2a2a2a;
    border-color: var(--clr-primary);
}

.event-poster img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.event-details {
    padding: clamp(1.5rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-date {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .event-card {
        flex-direction: row; /* Side-by-side on desktop */
    }
    .event-poster img {
        width: 200px;
        height: 100%;
    }
    .event-details {
        flex-direction: row;
        align-items: center;
        flex: 1;
        gap: 2rem;
    }
    .event-date {
        flex-direction: column;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 0;
        padding-right: 2rem;
        min-width: 80px;
        justify-content: center;
    }
}
.event-date .month {
    color: var(--clr-accent);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.event-date .day {
    font-size: 2.5rem;
    font-family: var(--font-impact);
    color: #fff;
    line-height: 1;
}

.event-text {
    flex: 1;
}
.event-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.event-text p {
    color: var(--clr-text-muted);
}

.buy-ticket-btn {
    white-space: nowrap;
}

/* =========================================
   FORMS (BOOKING & CONTACT)
========================================= */
.booking-section {
    background: url('about.png') no-repeat center center/cover;
    position: relative;
}
.booking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 16, 0.9);
}

.form-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.styled-form {
    background: rgba(31, 34, 43, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Make split inputs stack beautifully on mobile */
.split-input {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .split-input {
        grid-template-columns: 1fr 1fr;
    }
}

input, select, textarea {
    /* Minimum height of 44px is an Apple/Google standard for touch targets */
    min-height: 48px; 
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

select {
    -webkit-appearance: none;
    appearance: none;
}

textarea {
    resize: vertical;
    max-width: 100%;
    max-height: 400px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 1px var(--clr-primary);
    background: rgba(0,0,0,0.6);
}

.submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
    background-color: var(--clr-bg-alt);
}
.contact-info h3 {
    margin-bottom: 1.5rem;
}
.contact-info .info-block {
    margin-top: 2rem;
}
.contact-info h4 {
    color: var(--clr-secondary);
    margin-bottom: 0.25rem;
}
.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 700;
}
.social-links a:hover {
    background: var(--clr-primary);
    transform: translateY(-3px);
}

/* =========================================
   CONTACT ENVELOPE
========================================= */
.envelope-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4rem 1rem 2rem 1rem;
    perspective: 1000px;
}

.envelope {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1.5;
    background: transparent;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.envelope:hover {
    transform: translateY(-8px);
}

.envelope-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-primary), #b3922e);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.envelope-letter {
    position: absolute;
    inset: 15px;
    background: var(--clr-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.envelope-letter svg {
    width: 40px;
    height: 40px;
    color: var(--clr-primary);
    margin-bottom: 8px;
}

.envelope-letter span {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.envelope:hover .envelope-letter {
    transform: translateY(-50%);
    transition-delay: 0.1s;
}

.envelope-front {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    border-radius: 8px;
    overflow: hidden;
}

.envelope-poly-left {
    position: absolute;
    inset: 0;
    background: #cca733; 
    clip-path: polygon(0 0, 51% 51%, 0 100%);
}
.envelope-poly-right {
    position: absolute;
    inset: 0;
    background: #c39e2d;
    clip-path: polygon(100% 0, 49% 51%, 100% 100%);
}
.envelope-poly-bottom {
    position: absolute;
    inset: 0;
    background: var(--clr-primary);
    clip-path: polygon(0 100%, 50% 49%, 100% 100%);
}

.envelope-flap {
    position: absolute;
    inset: 0;
    background: var(--clr-secondary);
    clip-path: polygon(0 0, 100% 0, 50% 55%);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s 0.25s, background 0.3s 0.25s;
    z-index: 25;
    border-radius: 8px 8px 0 0;
}

.envelope:hover .envelope-flap {
    transform: rotateX(180deg);
    z-index: 5;
    background: #997b20;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: var(--clr-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE LAYOUT
========================================= */
@media (max-width: 900px) {
    .slide {
        flex: 0 0 320px;
        height: 320px;
    }
    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .envelope-container {
        display: none;
    }
    .hero-section {
        min-height: 75svh; /* Brings About Us section closer to home */
    }
    .hero-section::before {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
    .section {
        padding: 40px 0; /* Shrunk section paddings further */
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .hero-content h1 {
        letter-spacing: 2px;
    }
    /* 3 Slides Mobile Target */
    .slideshow-container {
        gap: 0.5rem;
        padding: 40px 0.5rem;
        margin: -40px 0;
    }
    .slide {
        flex: 0 0 60vw;
        height: 180px;
    }
    /* Event Poster Reduction */
    .event-poster img {
        height: 120px;
    }
    .buy-ticket-btn {
        width: 100%;
        text-align: center;
    }
    .form-container {
        padding: 0 1rem;
    }
    /* Form / Table / Card Reduction */
    .styled-form {
        padding: 1.5rem 1.25rem;
        backdrop-filter: none;
        background: rgba(31, 34, 43, 0.98); /* Make slightly darker to compensate for no blur */
    }
    .about-text-card {
        box-shadow: 0 10px 20px rgba(0,0,0,0.4); /* Smaller, cheaper shadow */
    }
    .styled-form input, .styled-form select, .styled-form textarea, .styled-form button {
        padding: 0.6rem 0.8rem;
        font-size: 16px;
    }
    .mobile-menu-btn {
        display: flex;
    }
    #navbar.scrolled {
        backdrop-filter: none;
        background: rgba(11,12,16,0.98);
    }
    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(11,12,16,0.98);
        backdrop-filter: none;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .nav-links ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }
}

/* =========================================
   TOAST NOTIFICATION
========================================= */
.toast-bar {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--clr-primary), #a68420);
    color: #111;
    padding: 15px 35px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    z-index: 9999;
    opacity: 0;
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    pointer-events: none;
    text-align: center;
    text-transform: uppercase;
}
.toast-bar.show {
    top: calc(env(safe-area-inset-top, 0px) + 20px);
    opacity: 1;
}

/* =========================================
   EXTRA SMALL DEVICES (PHONES)
========================================= */
@media (max-width: 480px) {
    /* Nav height too tall on small phones */
    :root {
        --nav-height: 60px;
    }

    /* Hero text still too large below 768px */
    .hero-content h1 {
        font-size: clamp(2.5rem, 15vw, 4rem);
        letter-spacing: 2px;
    }
    .hero-content h2 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
    .hero-tagline {
        font-size: 1rem;
    }

    /* Slides too wide on very small screens */
    .slide {
        flex: 0 0 70vw;
        height: 160px;
    }
    
    .slideshow-container {
        padding: 40px 0.5rem;
        margin: -40px 0;
    }

    /* Event card text cramped */
    .event-text h3 {
        font-size: 1.1rem;
    }

    /* Buttons too wide */
    .cta-button {
        padding: 0.65rem 1.4rem;
        font-size: 0.9rem;
    }

    /* About section image */
    .about-image {
        aspect-ratio: 16/9;
    }

    /* Contact section stacked properly */
    .contact-section .split {
        gap: 2rem;
    }
}
