/* ========================================
   M3 LOUNGE - DESIGN SYSTEM
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-overlay: rgba(10, 10, 15, 0.82);
    --bg-overlay-light: rgba(10, 10, 15, 0.70);

    /* Accents */
    --accent-gold: #d4a853;
    --accent-gold-light: #e8c87a;
    --accent-gold-rgb: 212, 168, 83;
    --accent-purple: #9333ea;
    --accent-magenta: #c026d3;
    --accent-purple-rgb: 147, 51, 234;

    /* Text */
    --text-primary: #f5f5f0;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --text-dark: #0a0a0f;

    /* Borders */
    --border-gold: rgba(212, 168, 83, 0.15);
    --border-gold-hover: rgba(212, 168, 83, 0.3);
    --border-gold-solid: rgba(212, 168, 83, 0.4);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --content-max-width: 1200px;
    --card-padding: 32px;
    --grid-gap: 24px;

    /* Border Radius */
    --radius-pill: 50px;
    --radius-card: 16px;
    --radius-sm: 8px;

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

    /* Shadows */
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(212, 168, 83, 0.3);
    --shadow-purple: 0 0 40px rgba(147, 51, 234, 0.4);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ---- Typography ---- */
.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    line-height: 1.1;
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    line-height: 1.2;
}

.heading-md {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    line-height: 1.3;
}

.heading-sm {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.body-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.body-lg {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: 0.04em;
}

/* ---- Layout ---- */
.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .divider {
    margin: 20px auto 24px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Background Effects ---- */
.bg-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.bg-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.92) 0%,
        rgba(10, 10, 15, 0.75) 40%,
        rgba(10, 10, 15, 0.90) 100%
    );
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08), transparent);
    animation: float 20s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.06), transparent);
    animation-delay: -5s;
    animation-duration: 25s;
}

.shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.05), transparent);
    animation-delay: -10s;
    animation-duration: 30s;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ---- Cards ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: var(--card-padding);
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
    stroke: var(--accent-gold);
    fill: none;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Menu Card ---- */
.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.menu-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.menu-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-image {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.menu-card-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
}

.menu-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---- Gallery Card ---- */
.gallery-item {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 15, 0.9) 0%,
        rgba(10, 10, 15, 0.3) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ---- Event Card ---- */
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.event-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.event-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.event-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* ---- Divider ---- */
.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 20px auto;
}

.divider-left {
    margin: 20px 0;
}

/* ---- Forms ---- */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4a853' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.navbar-logo span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.navbar-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

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

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--accent-gold);
}

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

.navbar-cta {
    padding: 10px 24px;
    font-size: 12px;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    transition: all var(--transition-fast);
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-purple);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 0.08em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a[href^="mailto:"]:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-credit {
    font-size: inherit;
    letter-spacing: 0.02em;
    color: var(--text-muted);
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.footer-credit strong {
    font-weight: 500;
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    transition: stroke var(--transition-fast);
}

.footer-social a:hover svg {
    stroke: var(--text-dark);
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

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

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
    font-size: 24px;
}

.lightbox-close:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
}

/* ---- Home: About video modal ---- */
.hero-learn-more {
    background: none;
    border: none;
    font-family: var(--font-body, inherit);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 0;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.hero-learn-more:hover,
.hero-learn-more:focus-visible {
    color: #e8c56c;
    outline: none;
}

.hero-learn-more:focus-visible {
    box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--accent-gold);
    border-radius: 2px;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-inner {
    position: relative;
    max-width: min(960px, 100%);
}

.video-modal video {
    display: block;
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold);
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
    font-size: 28px;
    line-height: 1;
    padding: 0;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
    background: var(--accent-gold);
    color: var(--text-dark);
    outline: none;
}

/* ---- About: kitchen food video (inline, play overlay) ---- */
.kitchen-video-embed {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background: #0a0a0f;
}

.kitchen-video-embed video {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.kitchen-video-embed .kitchen-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid var(--border-gold);
    background: rgba(10, 10, 15, 0.78);
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    z-index: 2;
    padding: 0;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.kitchen-video-embed .kitchen-play-btn:hover,
.kitchen-video-embed .kitchen-play-btn:focus-visible {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: scale(1.06);
    outline: none;
}

.kitchen-video-embed .kitchen-play-btn svg {
    margin-left: 4px;
}

.kitchen-video-embed.is-playing .kitchen-play-btn {
    display: none;
}

/* ---- Page Header ---- */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.9) 100%
    );
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Animations ---- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(147, 51, 234, 0.4),
            0 0 80px rgba(147, 51, 234, 0.2),
            0 0 120px rgba(192, 38, 211, 0.1);
    }
    50% {
        box-shadow:
            0 0 60px rgba(147, 51, 234, 0.6),
            0 0 100px rgba(147, 51, 234, 0.3),
            0 0 140px rgba(192, 38, 211, 0.2);
    }
}

/* Animation Utilities */
.animate-fadeIn {
    animation: fadeIn 1s ease-out both;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out both;
}

.animate-fadeInScale {
    animation: fadeInScale 1.2s ease-out both;
}

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

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

/* ---- Grid Layouts ---- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

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

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: right var(--transition-medium);
        z-index: 1001;
    }

    .navbar-links.active {
        right: 0;
    }

    .navbar-links a {
        font-size: 16px;
    }

    .navbar-toggle {
        display: flex;
        z-index: 1002;
    }

    .navbar-cta {
        display: none;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

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

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

    .event-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .page-header {
        min-height: 40vh;
    }
}

@media (max-width: 480px) {
    .heading-xl {
        font-size: 36px;
    }

    .heading-lg {
        font-size: 30px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .card {
        padding: 24px;
    }
}
