/* ===================================
   Alice Café Bar Productions
   Style Guide Implementation
   =================================== */

/* === CSS Variables === */
:root {
    /* Colors - Primary Palette */
    --night-charcoal: #121212;
    --pure-black: #000000;

    /* Colors - Accent Palette */
    --electric-blue: #00B3FF;
    --neon-magenta: #E22B8A;
    --sunset-purple: #7B2CBF;

    /* Colors - Luxury Palette */
    --gold-start: #E7B84D;
    --gold-end: #F3D17B;
    --soft-white: #F4F4F4;
    --cool-grey: #9FA4A9;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding-desktop: 120px 0 80px;
    --section-padding-mobile: 60px 0 40px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === Accessibility Utilities === */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === Reset & Base Styles === */
[hidden] { display: none !important; }

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--night-charcoal);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(226, 43, 138, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo h1,
.logo .logo-name,
.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 2px;
    color: var(--soft-white);
    white-space: nowrap;
    margin: 0;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--neon-magenta);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    color: var(--soft-white);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-blue), var(--neon-magenta));
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--soft-white);
    opacity: 0.8;
}

.nav-link.active {
    color: var(--neon-magenta);
}

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

.language-toggle {
    display: none;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--cool-grey);
    color: var(--cool-grey);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover,
.lang-btn.active {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    box-shadow: 0 0 10px rgba(0, 179, 255, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--electric-blue);
    transition: var(--transition-smooth);
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/heroOverlay.png');
    background-size: cover;
    background-position: center;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, var(--electric-blue), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--neon-magenta), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--gold-start), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--sunset-purple), transparent);
    background-size: 200% 200%;
    animation: floatParticles 20s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes floatParticles {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%; }
    50% { background-position: 100% 100%, 0% 0%, 70% 30%, 20% 90%; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    overlay: var(--soft-white);
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--neon-magenta);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    color: linear-gradient(135deg, var(--soft-white), var(--electric-blue), var(--neon-magenta));
    font-weight: 800;
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: white;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: #000000 2px 5px 5px;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--cool-grey);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--electric-blue);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background: var(--electric-blue);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--pure-black);
    box-shadow: 0 0 20px rgba(231, 184, 77, 0.5);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(231, 184, 77, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 10px rgba(0, 179, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 179, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 179, 255, 0.6);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* === Section Titles === */
.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 60px;
    position: relative;
}

.title-glow {
    position: relative;
    display: inline-block;
}

.title-glow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-magenta), var(--electric-blue));
    box-shadow: 0 0 20px var(--neon-magenta);
}

/* === Services Section === */
.services {
    padding: var(--section-padding-desktop);
    background: linear-gradient(180deg, var(--night-charcoal) 0%, #1a1a1a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 30px var(--electric-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--electric-blue);
    transition: var(--transition-smooth);
}

.service-card:nth-child(2) .service-icon {
    color: var(--neon-magenta);
}

.service-card:nth-child(3) .service-icon {
    color: var(--gold-start);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--soft-white);
}

.service-description {
    color: var(--cool-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--electric-blue);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--neon-magenta);
    text-decoration: underline;
}

.services-cta {
    text-align: center;
}

/* === Gallery Section === */
.gallery-preview {
    padding: var(--section-padding-desktop);
    background: var(--night-charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--cool-grey);
    padding: 60px 0;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.gallery-empty {
    text-align: center;
    color: var(--cool-grey);
    padding: 60px 0;
    font-size: 0.95rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--soft-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
}

/* === About Section === */
.about {
    padding: var(--section-padding-desktop);
    background: linear-gradient(180deg, #1a1a1a 0%, var(--night-charcoal) 100%);
}

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

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--neon-magenta);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(226, 43, 138, 0.5);
}

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

.about-text {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .title-glow::after {
    left: 0;
    transform: none;
}

.about-text p {
    color: var(--cool-grey);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: 20px;
}

/* === Reservation Section === */
.reservation {
    padding: var(--section-padding-desktop);
    background: var(--night-charcoal);
}

/* Two-column reservation layout */
.reservation-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}

.reservation-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--neon-magenta);
    margin-bottom: 16px;
}

.reservation-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--soft-white);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reservation-desc {
    color: var(--cool-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.reservation-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 28px;
}

.reservation-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reservation-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--soft-white);
}

.reservation-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-magenta);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.reservation-phone:hover {
    text-decoration: underline;
}

.reservation-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--soft-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reservation-submit {
    margin-top: 8px;
    letter-spacing: 2.5px;
    font-size: 0.85rem;
}

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

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

.form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.68rem;
    color: var(--neon-magenta);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cool-grey);
    color: var(--soft-white);
    padding: 12px 15px;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--electric-blue);
    outline-offset: 2px;
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 179, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
}

/* === Footer === */
.footer {
    background: var(--pure-black);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 179, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h2,
.footer h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(0, 179, 255, 0.3);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cool-grey);
}

.contact-list svg {
    color: var(--neon-magenta);
    flex-shrink: 0;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 179, 255, 0.1);
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--electric-blue);
    color: var(--pure-black);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 179, 255, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--cool-grey);
    font-size: 0.9rem;
}

.footer-lang {
    display: flex;
    gap: 5px;
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
}

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

/* === Toast Notification === */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-magenta));
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 179, 255, 0.5);
    z-index: 9999;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    font-weight: 600;
}

.toast.show {
    bottom: 30px;
}

/* === Animations === */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-section__image {
        height: 300px;
    }

    .split-section--reverse {
        direction: ltr;
    }

    .split-section__content {
        padding: 48px 32px;
    }

    .home-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .services,
    .gallery-preview,
    .about,
    .reservation {
        padding: var(--section-padding-mobile);
    }

    .upcoming-events { padding: 64px 0 48px; }
    .home-gallery { padding: 64px 0; }
    .faq-section { padding: 64px 0; }
    .newsletter-section { padding: 64px 0; }

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

    .home-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group input {
        border-right: 1px solid rgba(255,255,255,0.15);
        border-bottom: none;
        border-radius: 5px 5px 0 0;
    }

    .newsletter-input-group .btn {
        border-radius: 0 0 5px 5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition-smooth);
    }

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

    .nav-toggle {
        display: flex;
    }

    .language-toggle {
        margin-top: 20px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .title-glow::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text {
        text-align: center;
    }

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

    .reservation-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reservation-form-wrap {
        padding: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
}

/* === Focus Visible Styles === */
:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 2px solid var(--gold-start);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(231, 184, 77, 0.3);
}

.nav-link:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 4px;
    border-radius: 2px;
}

.lang-btn:focus-visible,
.filter-btn:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 3px;
}

.social-icon:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 3px;
}

/* =====================================================
   MISSING CLASSES — Added to match HTML structure
   ===================================================== */

/* === Hero Background Photo === */
.hero {
    background-image: url('images/Hero.png');
    background-size: cover;
    background-position: center;
}

/* === Animated Blobs (hero decorative layer) === */
.blob-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: blobDrift 18s ease-in-out infinite;
}

.blob-1 { width: 600px; height: 600px; background: var(--neon-magenta);   top: -200px; left: -100px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: var(--electric-blue);  top: 10%;    right: -150px; animation-delay: -5s; }
.blob-3 { width: 400px; height: 400px; background: var(--sunset-purple);  bottom: 0;   left: 20%;  animation-delay: -10s; }
.blob-4 { width: 350px; height: 350px; background: var(--gold-start);     top: 40%;    left: 60%;  animation-delay: -3s; }
.blob-5 { width: 300px; height: 300px; background: var(--electric-blue);  bottom: 10%; right: 20%; animation-delay: -8s; }

@keyframes blobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -30px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* === Text Gradient Utilities === */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--electric-blue), var(--sunset-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Button Outline === */
.btn-outline {
    background: transparent;
    color: var(--soft-white);
    border: 2px solid rgba(244, 244, 244, 0.4);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--soft-white);
    background: rgba(244, 244, 244, 0.08);
    transform: translateY(-2px);
}

/* === Marquee Strip === */
.marquee-strip {
    background: linear-gradient(90deg, var(--neon-magenta), var(--sunset-purple), var(--electric-blue));
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-right: 32px;
}

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

/* === Upcoming Events Section (Home) === */
.upcoming-events {
    padding: 100px 0 80px;
    background: var(--night-charcoal);
}

.upcoming-events .section-title {
    margin-bottom: 16px;
}


.upcoming-events__subtitle {
    text-align: center;
    color: var(--cool-grey);
    font-size: 1rem;
    margin-top: -20px;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

/* === Home Events Strip === */
.home-events-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 4px 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 48px;
}

.home-events-strip::-webkit-scrollbar {
    display: none;
}

/* === Home Event Card (portrait strip) === */
.home-event-card {
    flex-shrink: 0;
    position: relative;
    width: 190px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-event-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.home-event-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-event-card:hover .home-event-card__img {
    transform: scale(1.06);
}

.home-event-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.5) 45%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.home-event-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--neon-magenta);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(226, 43, 138, 0.5);
    z-index: 2;
}

.home-event-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 14px 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-event-card__date {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--neon-magenta);
    text-transform: uppercase;
    margin: 0;
}

.home-event-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin: 0;
}

.home-event-card__time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    letter-spacing: 0.5px;
}

/* === Events CTA === */
.events-cta {
    text-align: center;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.events-empty-home {
    text-align: center;
    color: var(--cool-grey);
    padding: 60px 0;
    font-size: 1.1rem;
}

/* === Event Card === */
.event-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: var(--electric-blue);
    box-shadow: 0 8px 40px rgba(0, 179, 255, 0.2);
}

.event-card--past {
    opacity: 0.6;
}

.event-card__poster {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.event-card:hover .event-card__poster img {
    transform: scale(1.06);
}

.event-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--neon-magenta);
    color: #fff;
    box-shadow: 0 0 12px rgba(226, 43, 138, 0.6);
}

.event-card__badge--past {
    top: 14px;
    left: auto;
    right: 14px;
    background: rgba(0,0,0,0.6);
    color: var(--cool-grey);
    box-shadow: none;
}

.event-card__info {
    padding: 22px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--soft-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-card__date,
.event-card__time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--cool-grey);
}

.event-card__date svg,
.event-card__time svg {
    color: var(--electric-blue);
    flex-shrink: 0;
}

.event-card__description {
    font-size: 0.88rem;
    color: var(--cool-grey);
    line-height: 1.55;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.event-card__btn {
    padding: 8px 18px;
    font-size: 0.78rem;
    flex: 1;
    text-align: center;
}

/* === Split Sections === */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.split-section--reverse {
    direction: rtl;
}

.split-section--reverse > * {
    direction: ltr;
}

.split-section__image {
    position: relative;
    overflow: hidden;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.split-section:hover .split-section__image img {
    transform: scale(1.04);
}

.split-section__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.4), rgba(0, 0, 0, 0.5));
}

.split-section__content {
    background: #0f0f0f;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.split-section__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--soft-white);
    line-height: 1.1;
}

.split-section__content p {
    color: var(--cool-grey);
    font-size: 1rem;
    line-height: 1.8;
}

/* === Home Gallery === */
.home-gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--night-charcoal) 0%, #0d0d0d 100%);
}

.home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
    margin-bottom: 48px;
}

/* === FAQ Section === */
.faq-section {
    padding: 100px 0;
    background: #0d0d0d;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item summary {
    list-style: none;
    padding: 22px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--soft-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
    transition: color 0.2s;
}

.faq-item summary::after {
    content: '＋';
    font-size: 1.3rem;
    color: var(--neon-magenta);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--electric-blue);
}

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

.faq-item p {
    padding: 0 0 22px 0;
    color: var(--cool-grey);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item p a {
    color: var(--electric-blue);
    text-decoration: underline;
}

/* === Newsletter Section === */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neon-magenta) 0%, #c01870 100%);
}

.newsletter-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 16px;
}

.newsletter-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input-group input {
    flex: 1;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    border-right: none;
    color: #fff;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 5px 0 0 5px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input-group input:focus {
    border-color: rgba(255,255,255,0.8);
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.65);
}

.newsletter-input-group .btn {
    border-radius: 0 5px 5px 0;
    white-space: nowrap;
}

/* === Footer Grid === */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}

.footer-brand .logo-tagline {
    color: var(--cool-grey);
}

.footer-tagline-text {
    color: var(--cool-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 12px 0 20px;
}

.footer-links-col h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

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

.footer-links-col li a {
    color: var(--cool-grey);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links-col li a:hover {
    color: var(--soft-white);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--cool-grey);
    font-size: 0.88rem;
    padding: 3px 0;
}

.footer-hours li span:last-child {
    color: var(--soft-white);
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
