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

:root {
    --copper: #d4a574;
    --gold: #e8c89b;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1214;
    --accent-pink: #F5D5E0;
    --accent-cream: #E8DED3;
    --accent-lavender: #E6E0F5;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* ========================================
   SPLIT SCREEN HERO
======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1214 50%, #0a0a0a 100%);
}

/* LEFT SIDE - CONTENT */
.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 18, 20, 0.9) 100%);
}

.hero-left-content {
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge */
.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.7); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(212, 165, 116, 0); }
}

/* Title Section */
/* Title Section - REDUCED ANIMATION MOVEMENT */
.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    line-height: 0.9;
    overflow: hidden;
}

.line-1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 50%, var(--accent-pink) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, slideInTitleSubtle 0.8s ease-out 0.5s both;
}

.line-2 {
    font-family: 'Playfair Display', serif; /* Changed to match THEUNOIA font */
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-cream);
    padding-left: 0.1em;
    text-transform: uppercase; /* Make Connect all caps */
    animation: slideInTitleSubtle 0.8s ease-out 0.7s both;
}

.line-3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--copper);
    -webkit-text-stroke: 1px var(--copper);
    -webkit-text-fill-color: transparent;
    animation: slideInTitleSubtle 0.8s ease-out 0.9s both;
}

/* UPDATED ANIMATION - LESS MOVEMENT */
@keyframes slideInTitleSubtle {
    from {
        opacity: 0;
        transform: translateY(10px);  /* REDUCED from 20px to 10px */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-subtitle {
    font-family: 'Playfair Display', serif; /* Changed to match THEUNOIA font */
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--accent-lavender);
    opacity: 0.9;
    animation: fadeIn 0.8s ease-out 1.1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Event Details */
.event-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    font-size: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--copper);
    opacity: 0.8;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-cream);
}

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

/* CTA Button (Centered with slight right adjustment) */
.hero-buttons {
    display: flex;
    
    margin-bottom: 3rem;
    margin-left: 40px; /* Add margin to shift button slightly right */
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

.btn-secondary {
    padding: 1rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--accent-cream);
    border: 2px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(10px);
    min-width: 200px;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--gold), var(--accent-pink));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-secondary:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--copper);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.btn-secondary:hover::after {
    transform: translateX(0);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    animation: fadeInUp 0.8s ease-out 1.7s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.4) 0%, transparent 70%);
    opacity: 0;
    filter: blur(8px);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
    border-radius: 50%;
}

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

@keyframes pulseGlow {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-cream);
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 165, 116, 0.2);
}

/* Left Decorative Elements */
.left-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 50%;
    animation: rotate 15s linear infinite reverse;
}

.deco-hex {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation: float-deco 8s ease-in-out infinite;
}

.hex-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hex-2 {
    bottom: 30%;
    left: 80%;
    animation-delay: 2s;
}

@keyframes float-deco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* DIAGONAL SPLIT LINE */
.diagonal-split {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--copper), var(--gold), var(--copper), transparent);
    transform: skewX(-10deg);
    z-index: 3;
    animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 20px rgba(212, 165, 116, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 40px rgba(212, 165, 116, 0.8); }
}

.split-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

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

/* RIGHT SIDE - IMAGE/VISUAL */
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 18, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.hero-right-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Container */
/* Logo Container - With animated border */
.logo-container {
    position: relative;
    width: 80%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatImage 6s ease-in-out infinite;
    background: transparent; /* Make background transparent */
    border-radius: 15px;
    padding: 3px; /* Increased space for the border */
}

/* Animated rotating border - Brighter version */
.logo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 15px;
    background: linear-gradient(
        to right, 
        #f0b978, /* Brighter copper */
        #ffe0a6, /* Brighter gold */
        #ffdeee, /* Brighter pink */
        #e9e2ff, /* Brighter lavender */
        #f0b978  /* Brighter copper again */
    );
    background-size: 300% 100%;
    animation: movingBorder 3s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    box-shadow: 0 0 10px rgba(232, 200, 155, 0.5); /* Add glow effect */
    opacity: 0.9; /* Slightly more visible */
}

@keyframes movingBorder {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

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

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

/* Keep the glow rings but make them more subtle */
.logo-glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: expandRing 4s ease-in-out infinite;
    background: transparent; /* Ensure rings are transparent */
}

.ring-1 {
    inset: -10%;
    border-color: rgba(212, 165, 116, 0.12); /* Made more subtle */
    animation-delay: 0s;
}

.ring-2 {
    inset: -20%;
    border-color: rgba(232, 200, 155, 0.35); /* Made more subtle */
    animation-delay: 1s;
}

.ring-3 {
    inset: -30%;
    border-color: rgba(245, 213, 224, 0.4); /* Made more subtle */
    animation-delay: 2s;
}

@keyframes expandRing {
    0%, 100% { transform: scale(1); opacity: 0.2; } /* Reduced opacity */
    50% { transform: scale(1.1); opacity: 0.5; } /* Reduced opacity */
}

/* Logo Image - Keep as is */
.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
    animation: fadeInScale 1.2s ease-out 0.5s both;
    background: transparent; /* Ensure no background */
}

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


/* Floating Hexagons */
.floating-hex {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--copper);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    opacity: 0.3;
    animation: floatHex 10s ease-in-out infinite;
}

.hex-float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hex-float-2 {
    top: 15%;
    right: 15%;
    animation-delay: 2s;
}

.hex-float-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.hex-float-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

.hex-float-5 {
    top: 50%;
    left: 5%;
    animation-delay: 8s;
}

@keyframes floatHex {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.5;
    }
}

/* Particle Field */
.particle-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Right Decorative Elements */
.right-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.line-1 {
    top: 30%;
    left: 0;
    right: 0;
    animation: slideLine 8s ease-in-out infinite;
}

.line-2 {
    bottom: 35%;
    left: 0;
    right: 0;
    animation: slideLine 8s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes slideLine {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 0.5; transform: translateX(100%); }
}

.deco-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
    animation: pulseDot 3s ease-in-out infinite;
}

.dot-1 {
    top: 25%;
    right: 20%;
}

.dot-2 {
    bottom: 30%;
    left: 25%;
    animation-delay: 1.5s;
}

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

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--copper), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(400%); }
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
}

/* ========================================
   SECTION 2 - EVENT DETAILS
======================================== */

.event-details-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1214 50%, #0a0a0a 100%);
    color: var(--accent-cream);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.event-details-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.event-details-section .row {
    display: flex;
    flex-direction: row;
    gap: 4%;
    justify-content: center;
}

/* Common styles for both containers */
.poster-container, .details-container {
    width: 48%; /* Set exact widths instead of flex: 1 */
    background: linear-gradient(135deg, rgba(26, 18, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px; /* Fixed height instead of min-height */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 3px; /* Space for the animated border */
    animation: floatContainer 8s ease-in-out infinite;
    will-change: transform; /* Optimization for smoother animation */
}

/* Animated border for containers */
.poster-container::before, .details-container::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(
        to right, 
        #f0b978, /* Brighter copper */
        #ffe0a6, /* Brighter gold */
        #ffdeee, /* Brighter pink */
        #e9e2ff, /* Brighter lavender */
        #f0b978  /* Brighter copper again */
    );
    background-size: 300% 100%;
    animation: movingBorder 3s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    box-shadow: 0 0 10px rgba(232, 200, 155, 0.5); /* Add glow effect */
    opacity: 0.9; /* Slightly more visible */
}

/* Removed glass reflection effect */

.poster-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--accent-cream);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden; /* For poster image */
}

/* Right Side - Details (specific overrides) */
.details-container {
    padding: 0; /* Remove container padding */
}

.details-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.details-heading {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 50%, var(--accent-pink) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
    animation: gradientShift 3s ease infinite;
}

.details-description {
    flex-grow: 0.8;
    color: var(--accent-cream);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.details-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-icon {
    margin-right: 1rem;
    color: var(--copper);
}

.event-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    opacity: 0.9;
}

.info-label {
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    letter-spacing: 0.05em;
}

.info-value {
    color: var(--accent-cream);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    display: block;
}

.register-button-container {
    display: flex;
    justify-content: center;
}

.register-btn {
    min-width: 200px;
    background: transparent;
    color: var(--accent-cream);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Underline animation */
.register-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--gold), var(--accent-pink));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.register-btn:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--copper);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.register-btn:hover::after {
    transform: translateX(0);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Animation for section 2 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    /* Hero section responsive */
    .hero-section {
        flex-direction: column;
    }

    .hero-left, .hero-right {
        width: 100%;
        min-height: 50vh;
    }

    .diagonal-split {
        top: 50%;
        left: 0;
        width: 100%;
        height: 3px;
        transform: skewY(-2deg);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .event-details {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }
    
    /* Event details section responsive */
    .event-details-section .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .poster-container, .details-container {
        width: 100%;
        height: 400px;
    }
    
    /* Adjust animations for mobile */
.poster-container, .details-container {
    animation-duration: 10s; /* Slower floating on mobile */
    animation-name: floatContainer;
}

.poster-container::before, .details-container::before {
    animation-duration: 5s; /* Slower border animation on mobile */
}
}

@media (max-width: 768px) {
    .hero-left, .hero-right {
        padding: 3rem 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    .floating-hex {
        width: 40px;
        height: 40px;
    }
    
    /* Event details section mobile */
    .event-details-section {
        padding: 4rem 1rem;
    }
    
    .details-content {
        padding: 2rem;
    }
    
    .details-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        width: 100%;
    }
    
    .details-heading {
        font-size: 2.5rem;
    }
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    min-height: 100vh;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1214 50%, #0a0a0a 100%);
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--accent-cream);
    opacity: 0.8;
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-cream);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.feature-icon {
    font-size: 2.5rem;
    filter: grayscale(100%);
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--accent-cream);
    opacity: 0.8;
    line-height: 1.6;
}

.about-stats-card {
    background: linear-gradient(135deg, 
        rgba(212, 165, 116, 0.1) 0%, 
        rgba(26, 18, 20, 0.8) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
}

.stats-card-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    font-size: 0.85rem;
    color: var(--accent-cream);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1214 50%, #0a0a0a 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--accent-cream);
    opacity: 0.7;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--accent-cream);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

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

.footer-links a {
    color: var(--accent-cream);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--accent-cream);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-contact svg {
    margin-top: 3px;
    flex-shrink: 0;
}

.newsletter-text {
    font-size: 0.95rem;
    color: var(--accent-cream);
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    background: rgba(26, 18, 20, 0.5);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    color: var(--accent-cream);
    font-size: 0.95rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--copper), var(--gold));
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-cream);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--accent-cream);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* ========================================
   REGISTRATION MODAL
======================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: linear-gradient(135deg, 
        rgba(26, 18, 20, 0.95) 0%, 
        rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 116, 0.3);
    background: rgba(26, 18, 20, 0.8);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem 2.5rem;
}

.modal-header {
    margin-bottom: 2.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--accent-cream);
    opacity: 0.8;
}

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

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.step-title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}
/* Form styling - equal width inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%; /* Ensure all form groups have equal width */
}

.form-group label {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

.form-group input {
    padding: 0.75rem 1rem;
    background: rgba(26, 18, 20, 0.5);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    color: var(--accent-cream);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%; /* All inputs same width */
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(26, 18, 20, 0.7);
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--copper), var(--gold));
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

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

    .about-stats-card {
        position: relative;
        top: 0;
    }

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

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }
}