/* Speaker Page - evelynlopezdelon.com */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0B0F1A;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #F8FAFC;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0B0F1A;
}
::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.5);
}

/* Selection */
::selection {
    background: rgba(124, 58, 237, 0.4);
    color: white;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
@keyframes timeline-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(124, 58, 237, 0.3); }
    50% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.6); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
.animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}
.animate-glow-pulse {
    animation: glow-pulse 4s ease-in-out infinite;
}

/* Scroll-triggered animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar glassmorphism */
.nav-scrolled {
    background: rgba(11, 15, 26, 0.85) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 25%, #F97316 50%, #EC4899 75%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}
.btn-primary:hover {
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
    transform: translateY(-3px);
}

.btn-gradient {
    background: linear-gradient(135deg, #EC4899 0%, #F97316 50%, #7C3AED 100%);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}
.btn-gradient:hover {
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid rgba(124, 58, 237, 0.5);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

/* Hero background placeholder */
.hero-bg-placeholder {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(11, 15, 26, 1) 40%, rgba(249, 115, 22, 0.05) 100%);
    border: none;
}

/* Photo placeholder */
.photo-placeholder {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(249, 115, 22, 0.08) 100%);
    border: 2px dashed rgba(124, 58, 237, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.875rem;
}

/* Video placeholder */
.video-placeholder {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 2px dashed rgba(124, 58, 237, 0.2);
}

/* Collage placeholder */
.collage-placeholder {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(249, 115, 22, 0.04) 50%, rgba(236, 72, 153, 0.06) 100%);
    border: 2px dashed rgba(124, 58, 237, 0.15);
}

/* Logo placeholder */
.logo-placeholder {
    transition: opacity 0.3s ease;
}
.logo-placeholder:hover {
    opacity: 1 !important;
}

/* ========== JOURNEY TIMELINE ========== */

.journey-timeline {
    position: relative;
}

/* Vertical connecting line - gradient from pink to coral to violet */
.journey-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        #EC4899 0%,
        #F97316 50%,
        #7C3AED 100%
    );
    transform: translateX(-50%);
    opacity: 0.3;
    animation: timeline-glow 4s ease-in-out infinite;
}

/* Each journey stage */
.journey-stage {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 4rem;
}
.journey-stage:last-child {
    margin-bottom: 0;
}

/* Journey stage number */
.journey-number-wrapper {
    margin-bottom: 1.5rem;
}

.journey-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.journey-number-pink {
    background: rgba(236, 72, 153, 0.15);
    border: 2px solid rgba(236, 72, 153, 0.3);
    color: #EC4899;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
}

.journey-number-coral {
    background: rgba(249, 115, 22, 0.15);
    border: 2px solid rgba(249, 115, 22, 0.3);
    color: #FB923C;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.journey-number-violet {
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid rgba(124, 58, 237, 0.3);
    color: #8B5CF6;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.journey-stage:hover .journey-number {
    transform: scale(1.1);
}
.journey-stage:hover .journey-number-pink {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}
.journey-stage:hover .journey-number-coral {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}
.journey-stage:hover .journey-number-violet {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

/* Journey blockquote */
.journey-quote {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    padding-left: 1.25rem;
    border-left: 3px solid;
    line-height: 1.6;
}

.journey-quote-pink {
    color: #EC4899;
    border-color: rgba(236, 72, 153, 0.4);
}

.journey-quote-coral {
    color: #FB923C;
    border-color: rgba(249, 115, 22, 0.4);
}

.journey-quote-violet {
    color: #8B5CF6;
    border-color: rgba(124, 58, 237, 0.4);
}

/* ========== END JOURNEY TIMELINE ========== */

/* Fact number circle */
.fact-number {
    transition: all 0.3s ease;
}
.fade-in-section:hover .fact-number {
    transform: scale(1.1);
}

/* Stat card */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

/* Testimonial quote mark */
.quote-mark {
    font-size: 4rem;
    line-height: 1;
    background: linear-gradient(135deg, #7C3AED, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
}

/* Mobile nav */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(11, 15, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.mobile-menu.open {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .nav-links {
        display: none !important;
    }
    .mobile-toggle {
        display: block !important;
    }
    .logo-strip {
        gap: 1.5rem !important;
    }
    /* Journey responsive */
    .journey-stage {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    .journey-quote {
        font-size: 1.1rem;
    }
}
