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

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #F4E4BC;
    --dark-navy: #1a1a2e;
    --light-navy: #16213e;
    --soft-white: #fafafa;
    --warm-white: #f8f6f2;
    --text-dark: #2c2c2c;
    --text-light: #6c6c6c;
    --accent-bronze: #CD7F32;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--soft-white);
    overflow-x: hidden;
}

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

/* Header and Navigation */
.hero {
    min-height: 100vh;
    background: 
        /* Gradient overlay for text readability */
        linear-gradient(135deg, 
            rgba(10, 10, 20, 0.75) 0%, 
            rgba(15, 15, 30, 0.7) 30%,
            rgba(20, 20, 40, 0.65) 70%,
            rgba(25, 25, 50, 0.7) 100%),
        /* Stage lighting effect */
        radial-gradient(ellipse 40% 30% at 50% 85%, 
            rgba(212, 175, 55, 0.2) 0%, 
            rgba(255, 215, 0, 0.15) 30%, 
            transparent 70%),
        /* LED wall effect */
        radial-gradient(ellipse 60% 40% at 50% 90%, 
            rgba(100, 150, 255, 0.1) 0%, 
            rgba(50, 100, 200, 0.08) 50%, 
            transparent 80%),
        /* Premium luxury conference event with hundreds seated, speaker, professional lighting */
        url('premium-event-hundreds.jpg') center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    color: white;
    overflow: hidden;
}

/* Conference Hall Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Cover side walls to hide foreign text - left side */
        linear-gradient(to right,
            rgba(15, 20, 30, 0.9) 0%,
            rgba(15, 20, 30, 0.6) 6%,
            rgba(15, 20, 30, 0.3) 12%,
            transparent 18%),
        /* Cover side walls to hide foreign text - right side */
        linear-gradient(to left,
            rgba(15, 20, 30, 0.9) 0%,
            rgba(15, 20, 30, 0.6) 6%,
            rgba(15, 20, 30, 0.3) 12%,
            transparent 18%),
        /* Stage podium */
        linear-gradient(to top,
            rgba(212, 175, 55, 0.08) 85%,
            transparent 90%),
        /* Side lighting beams */
        conic-gradient(from 45deg at 10% 80%, 
            transparent 0deg, 
            rgba(255, 255, 255, 0.03) 30deg, 
            transparent 60deg),
        conic-gradient(from 135deg at 90% 80%, 
            transparent 0deg, 
            rgba(255, 255, 255, 0.03) 30deg, 
            transparent 60deg);
    pointer-events: none;
    z-index: 1;
}


/* Stage lights animation */
@keyframes ledShimmer {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.4; }
}

/* Professional stage lighting sweep */
@keyframes stageLightSweep {
    0% { 
        background-position: -100% 0, 100% 0;
        opacity: 0.1;
    }
    25% { 
        background-position: 0% 0, 50% 0;
        opacity: 0.3;
    }
    50% { 
        background-position: 50% 0, 0% 0;
        opacity: 0.2;
    }
    75% { 
        background-position: 100% 0, -50% 0;
        opacity: 0.25;
    }
    100% { 
        background-position: 150% 0, -100% 0;
        opacity: 0.1;
    }
}

/* LED Wall and stage lighting effects */
.hero::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    height: 30%;
    pointer-events: none;
    z-index: 2;
    background: 
        /* LED dots pattern */
        radial-gradient(circle at 25% 20%, rgba(100, 150, 255, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 75% 30%, rgba(255, 100, 100, 0.2) 1px, transparent 2px),
        radial-gradient(circle at 50% 40%, rgba(100, 255, 100, 0.25) 1px, transparent 2px),
        radial-gradient(circle at 20% 60%, rgba(255, 255, 100, 0.2) 1px, transparent 2px),
        radial-gradient(circle at 80% 50%, rgba(255, 150, 255, 0.2) 1px, transparent 2px),
        /* Moving spotlight beams */
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.05) 45%, 
            rgba(255, 255, 255, 0.1) 50%, 
            rgba(255, 255, 255, 0.05) 55%, 
            transparent 100%),
        linear-gradient(-45deg, 
            transparent 0%, 
            rgba(212, 175, 55, 0.05) 45%, 
            rgba(212, 175, 55, 0.1) 50%, 
            rgba(212, 175, 55, 0.05) 55%, 
            transparent 100%);
    background-size: 
        50px 50px,
        60px 60px,
        40px 40px,
        70px 70px,
        45px 45px,
        200% 100%,
        200% 100%;
    animation: 
        ledShimmer 4s ease-in-out infinite alternate,
        stageLightSweep 8s linear infinite;
}

/* Spotlight effect will be added to existing hero-content */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(26, 26, 46, 0.98);
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    position: relative;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #D4AF37, #FFD700, #D4AF37, #CD7F32, #B8860B);
    border-radius: 14px;
    z-index: -1;
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

.nav-logo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 45px rgba(212, 175, 55, 0.6),
        0 5px 15px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}


.logo-img {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 2;
    border-radius: 6px;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.program-highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 0;
    font-weight: 600 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.program-highlight:hover {
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(212, 175, 55, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
}

.ticket-purchase {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: ticketPulse 3s infinite;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
}

.ticket-purchase:hover {
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
    background: linear-gradient(135deg, #20c997, #28a745) !important;
}

@keyframes ticketPulse {
    0% { box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(40, 167, 69, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4); }
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem 4rem;
    margin-top: 80px; /* Account for fixed nav */
    position: relative;
    z-index: 10;
}

/* Spotlight effect on hero content */
.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--secondary-gold);
    letter-spacing: 1px;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.date-line {
    width: 60px;
    height: 1px;
    background: var(--primary-gold);
}

.date-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.hero-speaker {
    margin: 2rem 0;
    text-align: center;
}

.speaker-text {
    font-size: 0.9rem;
    color: var(--secondary-gold);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.speaker-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    letter-spacing: 0.5px;
    text-transform: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
}

.hero-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.speaker-title {
    font-size: 1rem;
    color: var(--secondary-gold);
    font-weight: 300;
    font-style: italic;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.hero-location {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--secondary-gold);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Countdown Timer */
.countdown-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--secondary-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.countdown-separator {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.countdown-finished {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-bronze), var(--primary-gold));
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.program-button {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.program-button:hover::before {
    left: 0;
}

.program-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.about-quote {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
}

.quote-mark.closing {
    transform: rotate(180deg);
    display: inline-block;
}

.quote-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-navy);
    margin: 1rem 0;
    line-height: 1.4;
    max-width: 600px;
    margin: 1rem auto;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Organizer Section */
.organizer-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 127, 50, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0 3rem;
    text-align: center;
}

.organizer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.organizer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.organizer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Focus Weekend Section */
.focus-weekend-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin: 4rem 0;
}

.organizer-section {
    /* Reset any existing margin */
    margin: 0;
}

/* Video Section */
.video-section {
    text-align: center;
    margin: 0;
    padding: 0;
}

.video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    background: #000;
}

.video-container iframe {
    border-radius: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.highlight-item {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(255, 215, 0, 0.05) 50%,
        rgba(205, 127, 50, 0.08) 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.3) 0%,
        rgba(255, 215, 0, 0.4) 50%,
        rgba(205, 127, 50, 0.3) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--primary-gold) 0%, 
        #FFD700 50%, 
        var(--accent-bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.highlight-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
}

.highlight-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-item:hover .highlight-number {
    transform: scale(1.05);
}

/* Responsive design for highlights */
@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .highlight-item {
        padding: 1.5rem 0.5rem;
        min-height: 120px;
    }
    
    .highlight-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .highlight-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .highlight-item {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
}

/* Program Section */
.program-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--warm-white), var(--soft-white));
}

.program-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.timeline-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
}

.program-phases {
    display: grid;
    gap: 2rem;
}

.phase-card {
    background: white;
    border-radius: 0;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
}

.phase-card.keynote {
    background: linear-gradient(135deg, var(--dark-navy), var(--light-navy));
    color: white;
    transform: scale(1.02);
    border: 1px solid var(--primary-gold);
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.phase-card.keynote:hover {
    transform: scale(1.02) translateY(-8px);
}

.phase-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    min-width: 120px;
    text-align: center;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 3px;
    padding: 1.5rem 0;
}

.phase-number.gold {
    color: var(--primary-gold);
    text-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.phase-content {
    flex: 1;
}

.phase-header {
    margin-bottom: 1.5rem;
}

.phase-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.phase-card.keynote .phase-title {
    color: var(--primary-gold);
}

.phase-time {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.phase-card.keynote .phase-time {
    color: var(--secondary-gold);
}

.phase-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.phase-card.keynote .phase-description {
    color: rgba(255, 255, 255, 0.9);
}

.phase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--dark-navy);
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-tag.premium {
    background: var(--primary-gold);
    color: white;
    border: 1px solid var(--accent-bronze);
}

.phase-card.keynote .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.phase-card.keynote .feature-tag.premium {
    background: var(--primary-gold);
    color: var(--dark-navy);
    border: 1px solid var(--primary-gold);
}

/* Presentation slots styling */
.phase-presentations {
    margin-bottom: 2rem;
}

.presentation-slot {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--primary-gold);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.presentation-slot:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.presentation-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.presentation-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.phase-card.keynote .presentation-slot {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-gold);
}

.phase-card.keynote .presentation-title {
    color: var(--primary-gold);
}

.phase-card.keynote .presentation-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Participation options styling */
.participation-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.participation-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 160px;
}

.participation-badge.online {
    background: rgba(255, 255, 255, 0.1);
}

.participation-badge.offline.premium {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(205, 127, 50, 0.2));
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.participation-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.participation-badge.offline.premium:hover {
    transform: translateY(-3px) scale(1.08);
}

.badge-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    text-align: center;
}

.badge-subtitle {
    font-size: 0.7rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

/* Accommodation info styling */
.accommodation-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 127, 50, 0.1));
    border-left: 4px solid var(--primary-gold);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.accommodation-info .feature-text {
    font-style: italic;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Venue Section */
.venue-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.venue-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.venue-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.venue-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.venue-features {
    display: grid;
    gap: 1rem;
}

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

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    color: var(--text-dark);
    font-weight: 500;
}

.venue-image {
    height: 400px;
    position: relative;
}

.venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--soft-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-value {
    color: var(--primary-gold);
    font-weight: 500;
}

.registration-form {
    text-align: center;
}

.cta-button-large {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-bronze), var(--primary-gold));
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button-large:hover::before {
    left: 0;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Form Styling */
.contact-form {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.message-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

.form-submit-btn {
    background: linear-gradient(135deg, var(--dark-navy), var(--light-navy));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--light-navy), var(--dark-navy));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.3);
}

.ticket-section {
    text-align: center;
    border-top: 2px solid #eee;
    padding-top: 2rem;
}

.ticket-section .form-note {
    margin-top: 1rem;
}

/* Captcha styling */
.captcha-group {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 127, 50, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 1rem;
}

.captcha-group label {
    color: var(--dark-navy) !important;
    font-weight: 700 !important;
}

#math-question {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #ccc !important;
}

.form-submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 2px solid var(--primary-gold);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.success-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 12px;
    border: 2px solid #dc3545;
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.retry-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Speakers Section */
.speakers-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--soft-white), var(--warm-white));
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.speakers-carousel {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    padding: 0 3rem;
}

.speakers-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-behavior: smooth;
}

.speaker-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.speaker-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* Fallback placeholder if image fails to load */
.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.speaker-card:hover .photo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.speaker-info {
    text-align: center;
}

.speaker-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.speaker-title {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speaker-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background: white;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 3rem 0;
}

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

.footer-logo h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.footer-text p {
    color: var(--secondary-gold);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 0.5rem 0;
    }
    
    .nav-logo {
        padding: 0.8rem 1.5rem;
        border-radius: 10px;
    }
    
    .nav-logo::before {
        border-radius: 12px;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .program-highlight {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem;
    }
    
    .ticket-purchase {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown {
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
    }
    
    .countdown-item {
        min-width: 45px;
    }
    
    .participation-options {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .participation-badge {
        min-width: 200px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .phase-card {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        padding: 2rem;
        align-items: flex-start;
    }
    
    .phase-number {
        font-size: 1.2rem;
        min-width: 60px;
        max-width: 60px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 0.5rem 0;
        letter-spacing: 1px;
        flex-shrink: 0;
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .phase-content {
        flex: 1;
    }
    
    .phase-card.keynote {
        transform: none;
    }
    
    .phase-card.keynote:hover {
        transform: translateY(-8px);
    }
    
    .presentation-slot:hover {
        transform: translateY(-2px);
    }
    
    .venue-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .speakers-carousel {
        padding: 0 1rem;
    }
    
    .speakers-track {
        justify-content: flex-start;
        align-items: center;
    }
    
    .speaker-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .speaker-image,
    .photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .venue-text .section-header {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .phase-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        width: 100%;
        text-align: center;
    }
    
    .focus-weekend-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem 0;
    }
    
    .video-section {
        margin: 0;
        padding: 0 1rem;
    }
    
    .video-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-logo {
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
    }
    
    .nav-logo::before {
        border-radius: 10px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .phase-card {
        padding: 1.5rem;
    }
    
    .cta-button,
    .cta-button-large,
    .program-button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .presentation-slot {
        padding: 0.8rem;
    }
    
    .presentation-title {
        font-size: 1rem;
    }
}

/* Parallel Events Styling */
.parallel-events {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}


.parallel-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.presentation-slot.parallel {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    margin-bottom: 0;
    position: relative;
}

.presentation-slot.parallel::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-bronze));
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.presentation-slot.parallel:hover::before {
    opacity: 0.3;
}

.phase-card.keynote .presentation-slot.parallel {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
}

.phase-card.keynote .parallel-events {
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .parallel-slots {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.phase-card,
.venue-content,
.contact-content {
    animation: fadeInUp 0.6s ease-out;
}