/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from Brand Guidelines */
    --obsidian: #0b0b0b;
    --goldenrod: #c5a040;
    --onyx: #343434;
    --slate: #bfbebe;
    --deep-gold: #9b6b30;
    --linen: #fff8ee;

    /* Typography */
    --font-primary: 'Bebas Neue', 'Arial Black', sans-serif;
    /* Druk Wide Bold alternative */
    --font-secondary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;

    /* Smooth transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--obsidian);
    background-color: var(--linen);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.loading {
    overflow: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.mobile-only {
    display: none !important;
}

@media (max-width: 991px) {
    .mobile-only {
        display: block !important;
    }
    .nav-desktop-btns {
        display: none !important;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    color: var(--obsidian);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--onyx);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.section-header {
    margin-bottom: 60px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
    will-change: background-color, box-shadow;
    transform: translateZ(0);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform var(--transition-base);
    will-change: transform;
    transform: translateZ(0);
}

.logo-img:hover {
    transform: scale(1.05) translateZ(0);
}

/* Keep old classes for backward compatibility if needed */

/* Event detail specific styles */
.event-banner {
    background-color: #000;
    display: block;
    position: relative;
    overflow: hidden;
}

.event-banner .event-banner-overlay {
    pointer-events: none;
}

.card {
    background: var(--linen);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(11, 11, 11, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

#eventDetails p {
    margin: 6px 0;
    color: var(--onyx);
}

#eventTags .tag {
    background: var(--obsidian);
    color: var(--linen);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
}

#galleryGrid img {
    width: 100%;

    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width:900px) {
    .event-hero {
        padding-top: 100px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* End event styles */

/* Checkout styles */
.checkout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start
}

.checkout-form {
    grid-column: 1 / span 3
}

.order-summary-card {
    grid-column: 4 / span 1
}

.order-summary-card .summary-content img {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px
}

.order-summary-card .summary-content .meta {
    flex: 1
}

.order-summary-card p {
    margin: 6px 0;
    color: var(--onyx)
}

.summary-content .title {
    font-weight: 700;
    font-size: 1.05rem
}

#summaryBreakdown p {
    margin: 6px 0;
    color: var(--onyx)
}

.checkout-form .form-grid {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column
}

.checkout-form label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--onyx)
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06)
}

.checkout-form textarea {
    resize: vertical
}

/* form-row 2-column helper */
.form-row {
    display: flex;
    gap: 10px
}

.form-row.two-cols>.form-group {
    flex: 1
}

/* Billing extras hide by default to keep form compact */
.billing-extra[hidden] {
    display: none
}

.billing-extra {
    margin-top: 8px;
    border-left: 2px solid rgba(0, 0, 0, 0.02);
    padding-left: 12px
}

/* Mobile sticky checkout bar */
#mobileCheckoutBar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: var(--card-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 16px;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    z-index: 3000;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.06)
}

#mobileCheckoutBar .mobile-total {
    font-weight: 700
}

@media (max-width:900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        order: 2;
        grid-column: auto
    }

    .checkout-form {
        order: 1;
        grid-column: auto
    }

    .form-row {
        flex-direction: column
    }

    #mobileCheckoutBar {
        display: flex
    }

    .checkout-grid {
        padding-bottom: 76px
    }
}


.btn-danger {
    display: inline-block;
    padding: 10px 18px;
    background: #c0392b;
    color: #fff;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
}

.btn-danger:hover {
    background: #a93226;
    transform: translateY(-1px);
}

/* Success modal small */
#orderSuccessModal {
    display: none;
    align-items: center;
    justify-content: center
}

#orderSuccessModal .modal-card {
    width: 420px;
    max-width: 92%;
    padding: 20px;
    text-align: left
}

#orderSuccessModal p.muted {
    color: var(--onyx);
    margin-top: 6px
}

#orderSuccessModal[style*="display:flex"] {
    display: flex
}

/* Keep old classes for backward compatibility if needed */
.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--goldenrod);
    letter-spacing: 3px;
    font-weight: 700;
    display: none;
    /* Hide text, show image instead */
}

.logo-subtext {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    color: var(--slate);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    display: none;
    /* Hide text, show image instead */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--linen);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-base);
    position: relative;
    will-change: color;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--goldenrod);
    transition: width var(--transition-base);
    will-change: width;
    transform: translateZ(0);
}

.nav-menu a:hover {
    color: var(--goldenrod);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--linen);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--onyx) 100%);
    overflow: hidden;
}

/* Animated Background */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(197, 160, 64, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 107, 48, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--obsidian) 0%, var(--onyx) 100%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--goldenrod);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s infinite ease-in-out;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes floatParticle {
    0% {
        transform: translate3d(0, 100vh, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translate3d(100px, -100px, 0) rotate(360deg);
        opacity: 0;
    }
}

/* Sparkles Effect */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--goldenrod);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--goldenrod), 0 0 20px var(--goldenrod);
    animation: sparkle 2s infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.6) 0%, rgba(52, 52, 52, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--linen);
    padding: 0 20px;
    max-width: 900px;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 64, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: -1;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate3d(-50%, -50%, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate3d(-50%, -50%, 0) scale(1.2);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: var(--linen);
    text-shadow:
        0 0 20px rgba(197, 160, 64, 0.5),
        0 0 40px rgba(197, 160, 64, 0.3),
        2px 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
    animation: titleReveal 1s ease-out both;
}

.title-line-1 {
    animation-delay: 0.3s;
}

.title-line-2 {
    animation-delay: 0.6s;
    color: var(--goldenrod);
    text-shadow:
        0 0 30px rgba(197, 160, 64, 0.8),
        0 0 60px rgba(197, 160, 64, 0.5),
        2px 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
}

.title-line-2::before,
.title-line-2::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--goldenrod);
    font-size: 1.5rem;
    opacity: 0.8;
    animation: sparkleRotate 2s infinite;
}

.title-line-2::before {
    left: -60px;
}

.title-line-2::after {
    right: -60px;
}

.title-line-3 {
    animation-delay: 0.9s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes sparkleRotate {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-50%) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--goldenrod);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 1.2s both;
    text-shadow: 0 0 20px rgba(197, 160, 64, 0.5);
}

.btn-hero {
    animation: fadeInUp 1s ease-out 1.5s both;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--goldenrod);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--goldenrod);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--goldenrod);
    border-bottom: 2px solid var(--goldenrod);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translate3d(-50%, 0, 0);
    }

    50% {
        transform: translate3d(-50%, -10px, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(100%) translateY(100%);
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: background-color var(--transition-base),
        color var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base),
        box-shadow var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    will-change: transform, background-color, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.btn-primary {
    background-color: var(--goldenrod);
    color: var(--obsidian);
    border-color: var(--goldenrod);
}

.btn-primary:hover {
    background-color: var(--deep-gold);
    border-color: var(--deep-gold);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 5px 20px rgba(197, 160, 64, 0.4);
}

.btn-primary:active {
    transform: translateY(0) translateZ(0);
    transition: transform var(--transition-fast);
}

.btn-secondary {
    background-color: transparent;
    color: var(--goldenrod);
    border-color: var(--goldenrod);
}

.btn-secondary:hover {
    background-color: var(--goldenrod);
    color: var(--obsidian);
    transform: translateY(-2px) translateZ(0);
}

.btn-secondary:active {
    transform: translateY(0) translateZ(0);
    transition: transform var(--transition-fast);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--linen);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--onyx);
}

.about-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(11, 11, 11, 0.2);
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg,
            var(--onyx) 0%,
            var(--deep-gold) 50%,
            var(--obsidian) 100%);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(197, 160, 64, 0.1) 40px,
            rgba(197, 160, 64, 0.1) 80px);
    animation: shimmer 3s linear infinite;
}

.about-image-placeholder::after {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
    color: var(--goldenrod);
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--obsidian);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--goldenrod);
    font-weight: 600;
}

.about-text em {
    color: var(--deep-gold);
    font-style: italic;
}

.brand-values h3 {
    font-size: 1.5rem;
    color: var(--obsidian);
    margin-bottom: 25px;
    text-align: left;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.value-tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--obsidian);
    color: var(--goldenrod);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid var(--goldenrod);
}

/* Events Section */
.events {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--linen) 0%, rgba(255, 248, 238, 0.5) 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(11, 11, 11, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.event-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 10px 40px rgba(11, 11, 11, 0.2);
}

.event-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--onyx);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-slow);
    will-change: transform;
    transform: translateZ(0);
}

.event-image-1 {
    background: linear-gradient(135deg, var(--onyx) 0%, var(--deep-gold) 100%);
}

.event-image-2 {
    background: linear-gradient(45deg, var(--obsidian) 0%, var(--goldenrod) 50%, var(--onyx) 100%);
}

.event-image-3 {
    background: linear-gradient(225deg, var(--deep-gold) 0%, var(--obsidian) 100%);
}

.event-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(197, 160, 64, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(155, 107, 48, 0.2) 0%, transparent 50%);
    opacity: 0.8;
}

.event-image-placeholder::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(197, 160, 64, 0.4);
    z-index: 1;
}

.event-card:hover .event-image-placeholder {
    transform: scale(1.05);
}

.event-card:hover .event-image-placeholder::after {
    color: rgba(197, 160, 64, 0.6);
    transform: translate(-50%, -50%) scale(1.2);
    transition: all 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 1.8rem;
    color: var(--obsidian);
    margin-bottom: 15px;
}

.event-content p {
    color: var(--onyx);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Image Gallery Section */
.image-gallery {
    padding: var(--section-padding);
    background-color: var(--linen);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(11, 11, 11, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.gallery-item:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 10px 30px rgba(11, 11, 11, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.5s ease;
}

.gallery-placeholder-1 {
    background: linear-gradient(135deg, var(--onyx) 0%, var(--goldenrod) 30%, var(--obsidian) 100%);
}

.gallery-placeholder-2 {
    background: linear-gradient(45deg, var(--deep-gold) 0%, var(--onyx) 50%, var(--goldenrod) 100%);
}

.gallery-placeholder-3 {
    background: linear-gradient(225deg, var(--obsidian) 0%, var(--deep-gold) 100%);
}

.gallery-placeholder-4 {
    background: linear-gradient(315deg, var(--goldenrod) 0%, var(--onyx) 100%);
}

.gallery-placeholder-5 {
    background: linear-gradient(135deg, var(--deep-gold) 0%, var(--obsidian) 50%, var(--goldenrod) 100%);
}

.gallery-placeholder-6 {
    background: linear-gradient(45deg, var(--onyx) 0%, var(--deep-gold) 100%);
}

.gallery-placeholder-7 {
    background: linear-gradient(225deg, var(--goldenrod) 0%, var(--obsidian) 100%);
}

.gallery-placeholder-8 {
    background: linear-gradient(315deg, var(--obsidian) 0%, var(--goldenrod) 50%, var(--deep-gold) 100%);
}

.gallery-placeholder-9 {
    background: linear-gradient(135deg, var(--deep-gold) 0%, var(--goldenrod) 100%);
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(197, 160, 64, 0.1) 20px,
            rgba(197, 160, 64, 0.1) 40px);
    opacity: 0.5;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-placeholder {
    transition: transform var(--transition-slow);
    will-change: transform;
    transform: translateZ(0);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1) translateZ(0);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    will-change: opacity;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Brand Voice Section */
.brand-voice {
    padding: var(--section-padding);
    background-color: var(--obsidian);
    color: var(--linen);
}

.brand-voice .section-title {
    color: var(--goldenrod);
}

.voice-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.voice-card {
    background-color: rgba(52, 52, 52, 0.5);
    padding: 40px;
    border-left: 4px solid var(--goldenrod);
    border-radius: 4px;
}

.voice-card h3 {
    font-size: 1.5rem;
    color: var(--goldenrod);
    margin-bottom: 20px;
}

.voice-card p {
    line-height: 1.8;
    color: var(--slate);
}

.voice-card strong {
    color: var(--goldenrod);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--linen);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--obsidian);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--onyx);
    background-color: white;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--obsidian);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--goldenrod);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    font-size: 1.3rem;
    color: var(--goldenrod);
    margin-bottom: 15px;
}

.info-item p {
    color: var(--onyx);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--obsidian);
    color: var(--linen);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-img {
    max-width: 250px;
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

/* Keep old classes for backward compatibility */
.footer-logo .logo-text {
    font-size: 2rem;
    margin-bottom: 5px;
    display: none;
    /* Hide text, show image instead */
}

.footer-logo .logo-subtext {
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: none;
    /* Hide text, show image instead */
}

.footer-logo .tagline {
    color: var(--slate);
    font-style: italic;
    font-size: 1rem;
}

.footer-links h4 {
    font-size: 1.2rem;
    color: var(--goldenrod);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--goldenrod);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--onyx);
    color: var(--slate);
}

/* Responsive Design */
/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) and (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Tablet Landscape (968px - 1023px) */
@media (max-width: 1023px) and (min-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 60px 20px;
    }
}

/* Tablet Portrait (768px - 967px) */
@media (max-width: 967px) and (min-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--obsidian);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        padding: 20px 0;
        gap: 20px;
        will-change: left;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-line-2::before,
    .title-line-2::after {
        font-size: 1.2rem;
    }

    .title-line-2::before {
        left: -50px;
    }

    .title-line-2::after {
        right: -50px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-placeholder {
        height: 250px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .voice-content {
        grid-template-columns: repeat(2, 1fr);
    }

    :root {
        --section-padding: 60px 20px;
    }
}

/* Mobile Landscape (640px - 767px) */
@media (max-width: 767px) and (min-width: 640px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--obsidian);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        padding: 20px 0;
        gap: 20px;
        will-change: left;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .title-line-2::before,
    .title-line-2::after {
        font-size: 1rem;
        display: none;
        /* Hide on smaller screens */
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .voice-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .hero-glow {
        width: 400px;
        height: 400px;
    }

    :root {
        --section-padding: 50px 20px;
    }
}

/* Mobile Portrait (480px - 639px) */
@media (max-width: 639px) and (min-width: 480px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--obsidian);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        padding: 20px 0;
        gap: 15px;
        will-change: left;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .title-line {
        font-size: 0.9em;
    }

    .title-line-2::before,
    .title-line-2::after {
        display: none;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .voice-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-placeholder {
        height: 200px;
    }

    .about-image-placeholder::after {
        font-size: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .loader-logo-img {
        max-width: 250px;
        max-height: 100px;
    }

    .hero-glow {
        width: 350px;
        height: 350px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .particle {
        width: 3px;
        height: 3px;
    }

    :root {
        --section-padding: 40px 20px;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--obsidian);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        padding: 15px 0;
        gap: 15px;
        will-change: left;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        padding: 15px 0;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .footer-logo-img {
        max-width: 200px;
        max-height: 60px;
    }

    .hero {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .title-line {
        font-size: 0.85em;
        line-height: 1.3;
    }

    .title-line-2::before,
    .title-line-2::after {
        display: none;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-image {
        height: 200px;
    }

    .voice-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-card {
        padding: 30px 20px;
    }

    .voice-card h3 {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-image-wrapper {
        margin-bottom: 20px;
    }

    .about-image-placeholder {
        height: 180px;
    }

    .about-image-placeholder::after {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form {
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
    }

    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    .loader-logo-img {
        max-width: 200px;
        max-height: 80px;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .footer-logo-img {
        max-width: 150px;
        max-height: 50px;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .particle {
        width: 2px;
        height: 2px;
    }

    .value-tag {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
    }

    :root {
        --section-padding: 30px 15px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.event-card,
.voice-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--onyx) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.loader-logo {
    margin-bottom: 40px;
}

.loader-logo-img {
    max-width: 300px;
    width: auto;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    animation: slideInDown 0.8s ease-out;
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Keep old classes for backward compatibility */
.loader-logo-text {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--goldenrod);
    letter-spacing: 4px;
    display: none;
    /* Hide text, show image instead */
    animation: slideInDown 0.8s ease-out;
}

.loader-logo-subtext {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--slate);
    letter-spacing: 5px;
    text-transform: uppercase;
    display: none;
    /* Hide text, show image instead */
    margin-top: 10px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.loader-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.spinner-ring {
    width: 15px;
    height: 15px;
    border: 3px solid rgba(197, 160, 64, 0.3);
    border-top-color: var(--goldenrod);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.2s;
    border-top-color: var(--deep-gold);
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.4s;
    border-top-color: var(--goldenrod);
}

.loader-text {
    color: var(--slate);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in 0.5s both;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--goldenrod);
    color: var(--obsidian);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) translateZ(0);
    transition: opacity var(--transition-base),
        visibility var(--transition-base),
        transform var(--transition-base),
        background-color var(--transition-base),
        box-shadow var(--transition-base);
    box-shadow: 0 4px 15px rgba(197, 160, 64, 0.4);
    will-change: transform, opacity, background-color;
    backface-visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
}

.scroll-to-top:hover {
    background-color: var(--deep-gold);
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 6px 20px rgba(197, 160, 64, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px) translateZ(0);
    transition: transform var(--transition-fast);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Enhanced Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Enhanced section animations */
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-tagline {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn-primary {
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Hover animations for cards - already defined above with better transitions */

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-10px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Text reveal animation */
.about-text p {
    animation: fadeInUp 0.6s ease-out both;
}

.about-text p:nth-child(1) {
    animation-delay: 0.1s;
}

.about-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.about-text p:nth-child(3) {
    animation-delay: 0.3s;
}

.about-text p:nth-child(4) {
    animation-delay: 0.4s;
}

.value-tag {
    animation: fadeInUp 0.5s ease-out both;
}

.value-tag:nth-child(1) {
    animation-delay: 0.1s;
}

.value-tag:nth-child(2) {
    animation-delay: 0.2s;
}

.value-tag:nth-child(3) {
    animation-delay: 0.3s;
}

.value-tag:nth-child(4) {
    animation-delay: 0.4s;
}

.value-tag:nth-child(5) {
    animation-delay: 0.5s;
}

.value-tag:nth-child(6) {
    animation-delay: 0.6s;
}

.value-tag:nth-child(7) {
    animation-delay: 0.7s;
}

.value-tag:nth-child(8) {
    animation-delay: 0.8s;
}

/* Stagger animation for event cards */
.event-card:nth-child(1) {
    animation-delay: 0.1s;
}

.event-card:nth-child(2) {
    animation-delay: 0.2s;
}

.event-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Stagger animation for voice cards */
.voice-card:nth-child(1) {
    animation-delay: 0.1s;
}

.voice-card:nth-child(2) {
    animation-delay: 0.2s;
}

.voice-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Floating animation for hero content - removed as we have parallax now */

/* Navbar slide down animation */
.navbar {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translate3d(0, -100%, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}


/* Membership Section */
.membership-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--linen) 0%, rgba(255, 248, 238, 0.5) 100%);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.membership-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(11, 11, 11, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(197, 160, 64, 0.2);
    border-color: var(--goldenrod);
}

.membership-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--goldenrod);
    color: var(--obsidian);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-name {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 16px;
    font-family: var(--font-primary);
}

.membership-price {
    margin: 20px 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--goldenrod);
}

.price-period {
    font-size: 1rem;
    color: #cbd5e1;
    margin-left: 8px;
}

.membership-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.membership-benefits {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.membership-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;

    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.membership-benefits li:last-child {
    border-bottom: none;
}

.membership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--goldenrod);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-membership {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--goldenrod);
    color: var(--obsidian);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-membership:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 64, 0.3);
}

.loading-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--onyx);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .membership-grid {
        grid-template-columns: 1fr;
    }

    .membership-name {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}


.membership-benefits li::before {
    content: '' !important;
}

/* Event Card Text Color Overrides for Dark Theme */
.event-content h3 {
    color: #fff !important;
}

.event-content p {
    color: #cbd5e1 !important;
}

.event-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- RESPONSIVE OVERRIDES --- */

/* Responsive Utilities */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 15px;
    }

    .section-title {
        font-size: 2.2rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    .container {
        padding: 0 15px !important;
    }
}

/* Navbar Responsive */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 999;
        gap: 32px;
        padding: 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }

    .nav-menu li a {
        font-size: 1.5rem;
        font-family: 'Bebas Neue';
        letter-spacing: 2px;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 1000;
        flex-direction: column;
        gap: 6px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-tagline {
        font-size: 1rem !important;
    }
}

/* Portal Responsive */
@media (max-width: 768px) {
    .membership-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .membership-stat {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .user-section {
        flex-direction: column;
        gap: 15px;
    }

    .user-info {
        text-align: center !important;
    }
}
