/* Speaking Page Specific Styles - Audio Wave Tron Aesthetic */

/* Speaking Hero with Audio Visualizer */
.speaking-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0d2e 50%, #0a0a0a 100%);
}

/* Audio Visualizer */
.audio-visualizer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-container {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 200px;
}

.wave {
    width: 6px;
    background: linear-gradient(180deg, 
        rgba(81, 10, 148, 0.1) 0%, 
        rgba(81, 10, 148, 0.8) 50%, 
        rgba(81, 10, 148, 0.1) 100%);
    border-radius: 3px;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.wave-1 { height: 20px; animation: waveHeight1 1.2s infinite; animation-delay: 0s; }
.wave-2 { height: 40px; animation: waveHeight2 1.1s infinite; animation-delay: 0.1s; }
.wave-3 { height: 60px; animation: waveHeight3 1.3s infinite; animation-delay: 0.2s; }
.wave-4 { height: 80px; animation: waveHeight4 1.0s infinite; animation-delay: 0.3s; }
.wave-5 { height: 100px; animation: waveHeight5 1.4s infinite; animation-delay: 0.4s; }
.wave-6 { height: 80px; animation: waveHeight6 1.1s infinite; animation-delay: 0.5s; }
.wave-7 { height: 60px; animation: waveHeight7 1.2s infinite; animation-delay: 0.6s; }
.wave-8 { height: 40px; animation: waveHeight8 1.3s infinite; animation-delay: 0.7s; }
.wave-9 { height: 30px; animation: waveHeight9 1.0s infinite; animation-delay: 0.8s; }
.wave-10 { height: 20px; animation: waveHeight10 1.5s infinite; animation-delay: 0.9s; }

@keyframes waveHeight1 {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

@keyframes waveHeight2 {
    0%, 100% { height: 40px; }
    50% { height: 120px; }
}

@keyframes waveHeight3 {
    0%, 100% { height: 60px; }
    50% { height: 140px; }
}

@keyframes waveHeight4 {
    0%, 100% { height: 80px; }
    50% { height: 180px; }
}

@keyframes waveHeight5 {
    0%, 100% { height: 100px; }
    50% { height: 200px; }
}

@keyframes waveHeight6 {
    0%, 100% { height: 80px; }
    50% { height: 160px; }
}

@keyframes waveHeight7 {
    0%, 100% { height: 60px; }
    50% { height: 130px; }
}

@keyframes waveHeight8 {
    0%, 100% { height: 40px; }
    50% { height: 100px; }
}

@keyframes waveHeight9 {
    0%, 100% { height: 30px; }
    50% { height: 80px; }
}

@keyframes waveHeight10 {
    0%, 100% { height: 20px; }
    50% { height: 50px; }
}

/* Sound Rings */
.sound-rings {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sound-rings::before,
.sound-rings::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(81, 10, 148, 0.3);
    border-radius: 50%;
    animation: soundRipple 3s ease-out infinite;
}

.sound-rings::before {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sound-rings::after {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

@keyframes soundRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

/* Pulse Text Effect */
.pulse-text {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(81, 10, 148, 0.8),
        0 0 20px rgba(81, 10, 148, 0.6),
        0 0 30px rgba(81, 10, 148, 0.4);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { 
        text-shadow: 
            0 0 10px rgba(81, 10, 148, 0.8),
            0 0 20px rgba(81, 10, 148, 0.6),
            0 0 30px rgba(81, 10, 148, 0.4);
        transform: scale(1);
    }
    to { 
        text-shadow: 
            0 0 20px rgba(81, 10, 148, 1),
            0 0 30px rgba(81, 10, 148, 0.8),
            0 0 40px rgba(81, 10, 148, 0.6);
        transform: scale(1.02);
    }
}

/* Speaking Introduction */
.speaking-intro {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #510a94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Speaking Venues Section */
.speaking-venues {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: linePulse 2s ease infinite;
}

@keyframes linePulse {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 150px; opacity: 1; }
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.venue-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(81, 10, 148, 0.3);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.venue-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(81, 10, 148, 0.3);
}

.venue-header {
    padding: 2rem;
    background: rgba(81, 10, 148, 0.1);
    border-bottom: 1px solid rgba(81, 10, 148, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.venue-icon {
    width: 60px;
    height: 60px;
    background: rgba(81, 10, 148, 0.2);
    border: 2px solid rgba(81, 10, 148, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.venue-card:hover .venue-icon {
    border-color: var(--accent);
    background: rgba(81, 10, 148, 0.3);
    transform: scale(1.1);
}

.venue-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-icon svg {
    transform: rotate(360deg);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: iconPulse 2s ease infinite;
}

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

.venue-header h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    flex: 1;
}

.venue-badge {
    background: rgba(81, 10, 148, 0.3);
    border: 1px solid rgba(81, 10, 148, 0.5);
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-content {
    padding: 2rem;
}

.venue-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.venue-formats,
.venue-topics {
    margin-bottom: 2rem;
}

.venue-formats h4,
.venue-topics h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(81, 10, 148, 0.3);
    padding-bottom: 0.5rem;
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.format-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: rgba(81, 10, 148, 0.2);
    border: 1px solid rgba(81, 10, 148, 0.4);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.venue-card:hover .format-tag {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(81, 10, 148, 0.3);
}

.venue-topics ul {
    list-style: none;
}

.venue-topics ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.venue-topics ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Speaking Experience Section */
.speaking-experience {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.experience-visual {
    position: relative;
    height: 300px;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(81, 10, 148, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.speaking-icon-large {
    width: 80px;
    height: 80px;
    color: #510a94;
    animation: iconGlow 3s ease-in-out infinite alternate;
}

.speaking-icon-large svg {
    width: 100%;
    height: 100%;
}

@keyframes iconGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(81, 10, 148, 0.5));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 20px rgba(81, 10, 148, 0.8));
        transform: scale(1.05);
    }
}

.experience-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.experience-badge {
    background: rgba(81, 10, 148, 0.2);
    border: 1px solid rgba(81, 10, 148, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.experience-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.highlight-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-types h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.venue-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.venue-type {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(81, 10, 148, 0.2);
    border: 1px solid rgba(81, 10, 148, 0.4);
    color: var(--text-secondary);
}

/* Signature Topics */
.signature-topics {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.topics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(81, 10, 148, 0.2);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.topic-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(81, 10, 148, 0.3);
    background: rgba(17, 17, 17, 0.8);
}

.topic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(81, 10, 148, 0.1);
    border: 2px solid rgba(81, 10, 148, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.topic-card:hover .topic-icon {
    border-color: var(--accent);
    background: rgba(81, 10, 148, 0.2);
    transform: scale(1.1);
}

.topic-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.topic-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.topic-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Podcast & Media Section */
.podcast-media {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.media-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-wave {
    position: absolute;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wave-line {
    width: 4px;
    background: rgba(81, 10, 148, 0.6);
    border-radius: 2px;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.wave-line-1 { height: 20px; animation: podcastWave1 1.5s infinite; }
.wave-line-2 { height: 40px; animation: podcastWave2 1.3s infinite; }
.wave-line-3 { height: 60px; animation: podcastWave3 1.7s infinite; }
.wave-line-4 { height: 40px; animation: podcastWave4 1.4s infinite; }
.wave-line-5 { height: 20px; animation: podcastWave5 1.6s infinite; }

@keyframes podcastWave1 {
    0%, 100% { height: 20px; }
    50% { height: 50px; }
}

@keyframes podcastWave2 {
    0%, 100% { height: 40px; }
    50% { height: 80px; }
}

@keyframes podcastWave3 {
    0%, 100% { height: 60px; }
    50% { height: 100px; }
}

@keyframes podcastWave4 {
    0%, 100% { height: 40px; }
    50% { height: 70px; }
}

@keyframes podcastWave5 {
    0%, 100% { height: 20px; }
    50% { height: 45px; }
}

.podcast-icon {
    width: 80px;
    height: 80px;
    background: rgba(81, 10, 148, 0.2);
    border: 3px solid rgba(81, 10, 148, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    animation: podcastPulse 3s ease infinite;
}

@keyframes podcastPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(81, 10, 148, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(81, 10, 148, 0.8); }
}

.podcast-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.media-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.media-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.media-initiatives {
    display: grid;
    gap: 1.5rem;
}

.initiative-item h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.initiative-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Booking Information */
.booking-info {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.booking-card {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(81, 10, 148, 0.2);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.booking-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(81, 10, 148, 0.3);
}

.booking-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(81, 10, 148, 0.1);
    border: 2px solid rgba(81, 10, 148, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-card:hover .booking-icon {
    border-color: var(--accent);
    background: rgba(81, 10, 148, 0.2);
    transform: scale(1.1);
}

.booking-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.booking-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.booking-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.speaking-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0d2e 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.speaking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(81, 10, 148, 0.1) 2px, transparent 3px),
        radial-gradient(circle at 80% 80%, rgba(81, 10, 148, 0.1) 2px, transparent 3px);
    background-size: 40px 40px;
    animation: ctaPattern 15s linear infinite;
}

@keyframes ctaPattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 40px 40px, -40px -40px; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.cta-button:hover {
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(81, 10, 148, 0.6);
}

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

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .experience-showcase,
    .media-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-visual,
    .media-visual {
        height: 200px;
    }
    
    .experience-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .speaking-hero {
        min-height: 50vh;
    }
    
    .pulse-text {
        font-size: 2.5rem;
    }
    
    .wave-container {
        height: 150px;
        gap: 6px;
    }
    
    .wave {
        width: 4px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .sound-rings {
        width: 300px;
        height: 300px;
    }
}