/* CSS Variables */
:root {
    --primary-blue: #29AAE2;
    --dark-blue: #0E3E63;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(14, 62, 99, 0.9) 0%, rgba(41, 170, 226, 0.8) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

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

/* Animated Background System */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(41, 170, 226, 0.03) 0%,
        rgba(14, 62, 99, 0.05) 25%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(41, 170, 226, 0.02) 75%,
        rgba(14, 62, 99, 0.03) 100%
    );
    animation: gradientShift 25s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    top: 10%;
    left: 10%;
    animation: float1 30s infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    background: var(--dark-blue);
    top: 60%;
    right: 15%;
    animation: float2 35s infinite;
}

.element-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    top: 30%;
    right: 30%;
    animation: float3 40s infinite;
}

.element-4 {
    width: 180px;
    height: 180px;
    background: var(--dark-blue);
    bottom: 20%;
    left: 20%;
    animation: float4 45s infinite;
}

.element-5 {
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    top: 80%;
    left: 60%;
    animation: float5 50s infinite;
}

.element-6 {
    width: 90px;
    height: 90px;
    background: var(--dark-blue);
    top: 15%;
    left: 70%;
    animation: float6 55s infinite;
}

/* Keyframe Animations */
@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, rgba(41, 170, 226, 0.03) 0%, rgba(14, 62, 99, 0.05) 25%, rgba(255, 255, 255, 0.98) 50%, rgba(41, 170, 226, 0.02) 75%, rgba(14, 62, 99, 0.03) 100%);
    }
    50% { 
        background: linear-gradient(135deg, rgba(14, 62, 99, 0.05) 0%, rgba(41, 170, 226, 0.03) 25%, rgba(255, 255, 255, 0.96) 50%, rgba(14, 62, 99, 0.02) 75%, rgba(41, 170, 226, 0.04) 100%);
    }
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -20px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-20px, 30px) rotate(180deg) scale(0.9); }
    75% { transform: translate(40px, 10px) rotate(270deg) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-40px, 25px) rotate(120deg) scale(1.15); }
    66% { transform: translate(25px, -35px) rotate(240deg) scale(0.85); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    20% { transform: translate(20px, 30px) rotate(72deg) scale(1.2); }
    40% { transform: translate(-30px, -10px) rotate(144deg) scale(0.8); }
    60% { transform: translate(35px, -25px) rotate(216deg) scale(1.1); }
    80% { transform: translate(-15px, 20px) rotate(288deg) scale(0.9); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-50px, -40px) rotate(180deg) scale(1.3); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-25px, 35px) rotate(90deg) scale(0.7); }
    50% { transform: translate(45px, -20px) rotate(180deg) scale(1.4); }
    75% { transform: translate(-35px, -30px) rotate(270deg) scale(0.9); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    16% { transform: translate(15px, -25px) rotate(60deg) scale(1.1); }
    33% { transform: translate(-20px, 30px) rotate(120deg) scale(0.8); }
    50% { transform: translate(30px, 15px) rotate(180deg) scale(1.2); }
    66% { transform: translate(-35px, -20px) rotate(240deg) scale(0.9); }
    83% { transform: translate(25px, -35px) rotate(300deg) scale(1.05); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo h2 {
    color: var(--dark-blue);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

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

.nav a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 170, 226, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../live-events-assets/leadership-workshop.jpg') center/cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.live-indicator {
    background: #ff4444;
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-blue);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.event-dates {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.date-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.date-value {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.date-time {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.date-separator {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-blue);
    padding: 18px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.primary-button.large {
    padding: 22px 40px;
    font-size: 1.2rem;
}

.button-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.primary-button:hover .button-icon {
    transform: translateX(3px);
}

.registration-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatVideo 6s ease-in-out infinite;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Event Overview */
.event-overview {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.overview-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.overview-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.overview-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Event Details */
.event-details {
    padding: 100px 0;
}

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

.details-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.detail-content p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.details-image {
    position: relative;
}

.details-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

/* Experience Timeline */
.experience {
    padding: 100px 0;
    background: var(--gray-light);
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 37px;
    top: 75px;
    width: 2px;
    height: calc(100% + 25px);
    background: var(--primary-blue);
    opacity: 0.3;
}

.timeline-marker {
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(41, 170, 226, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-light);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    color: var(--gray-medium);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

/* About Coach */
.about-coach {
    padding: 100px 0;
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 12px;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.highlight-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 600;
}

.about-content p:last-child {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../live-events-assets/professional-audience.jpg') center/cover;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgency {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.urgency-text {
    background: rgba(255, 68, 68, 0.9);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.urgency-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .details-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .event-dates {
        flex-direction: column;
        gap: 20px;
    }
    
    .date-separator {
        width: 40px;
        height: 2px;
    }
    
    .nav {
        display: none;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

