/**
 * Invest Time Podcast Landing Page - Dark Style
 * Header/nav styles are in common.css
 */

/* Page-specific CSS variables */
:root {
    --accent: #1DB954;
    --accent-glow: rgba(29, 185, 84, 0.3);
    --gradient-spotify: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
}

/* Page-specific ambient effects with green tones */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(29, 185, 84, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 10% 80%, rgba(29, 185, 84, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Page-specific orbs with green Spotify colors */
.ih-orb-1 {
    background: rgba(29, 185, 84, 0.12) !important;
}

.ih-orb-2 {
    background: rgba(168, 85, 247, 0.08) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ih-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 1;
}

.ih-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ih-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.ih-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ih-hero h1 span {
    background: var(--gradient-spotify);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ih-hero-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

.ih-hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.ih-btn-spotify {
    background: var(--gradient-spotify);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.ih-btn-spotify:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.ih-btn-spotify svg {
    width: 24px;
    height: 24px;
}

.ih-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.ih-btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
}

/* ============================================
   PODCAST PLATFORMS
   ============================================ */
.ih-platforms {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ih-platforms-label {
    font-size: 13px;
    color: var(--text-muted);
}

.ih-platforms-icons {
    display: flex;
    gap: 16px;
}

.ih-platforms-icons a {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.ih-platforms-icons a:hover {
    opacity: 1;
}

.ih-platforms-icons img {
    height: 32px;
}

/* ============================================
   HERO VISUAL - SPOTIFY PLAYER
   ============================================ */
.ih-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ih-spotify-embed {
    width: 100%;
    max-width: 450px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.ih-spotify-embed iframe {
    border-radius: 12px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.ih-stats {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.ih-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ih-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ih-section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ih-section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.ih-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ih-stat-item {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.ih-stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-spotify);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ih-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   ABOUT PODCAST
   ============================================ */
.ih-about {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ih-about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.ih-about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ih-about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}

.ih-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    text-align: left;
}

.ih-about-feature span {
    flex: 1;
    line-height: 1.5;
}

.ih-about-feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: white;
    margin-top: 2px;
}

.ih-about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ih-episode-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all 0.3s;
}

.ih-episode-card:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.ih-episode-cover {
    width: 80px;
    height: 80px;
    background: var(--gradient-spotify);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.ih-episode-info {
    flex: 1;
}

.ih-episode-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.ih-episode-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.ih-episode-play {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
}

.ih-episode-play:hover {
    transform: scale(1.1);
}

.ih-episodes-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.ih-episodes-list {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.ih-episode-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.ih-episode-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.ih-episode-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    min-width: 50px;
}

.ih-episode-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.ih-episode-content {
    flex: 1;
}

.ih-episode-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.ih-episode-date {
    font-size: 13px;
    color: var(--text-muted);
}

.ih-episode-play-btn {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    transition: transform 0.2s;
}

.ih-episode-item:hover .ih-episode-play-btn {
    transform: scale(1.1);
}

.ih-all-episodes {
    display: block;
    text-align: center;
    padding: 12px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-top: 8px;
    transition: color 0.2s;
}

.ih-all-episodes:hover {
    color: #1ed760;
}

/* ============================================
   TOPICS
   ============================================ */
.ih-topics {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-topics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ih-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ih-topic-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.ih-topic-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.ih-topic-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.ih-topic-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.ih-testimonials {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ih-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ih-testimonial-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
}

.ih-testimonial-platform {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 12px;
    color: var(--accent);
    background: rgba(29, 185, 84, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

.ih-testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ih-testimonial-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ih-testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ih-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ih-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-spotify);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.ih-testimonial-name {
    font-weight: 600;
    font-size: 15px;
}

.ih-testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   HOSTS SECTION
   ============================================ */
.ih-hosts {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.ih-hosts-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ih-hosts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ih-host-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.ih-host-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-spotify);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.ih-host-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ih-host-role {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 16px;
}

.ih-host-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ih-cta {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ih-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.ih-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ih-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.ih-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.ih-footer {
    padding: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .ih-hero-content, .ih-about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ih-hero h1 {
        font-size: 40px;
    }

    .ih-hero-text {
        margin: 0 auto 40px;
    }

    .ih-hero-cta, .ih-platforms {
        justify-content: center;
    }

    .ih-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ih-topics-grid, .ih-testimonials-grid, .ih-hosts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header responsive styles are in common.css */

    .ih-hero {
        padding: 100px 20px 60px;
    }

    .ih-hero h1 {
        font-size: 32px;
    }

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

    .ih-stat-number {
        font-size: 36px;
    }

    .ih-about, .ih-topics, .ih-testimonials, .ih-hosts, .ih-cta {
        padding: 60px 20px;
    }

    .ih-section-header h2, .ih-about-content h2 {
        font-size: 28px;
    }

    .ih-cta h2 {
        font-size: 32px;
    }

    .ih-about-features {
        max-width: 100%;
        margin: 32px auto 0;
        padding: 0 10px;
    }

    .ih-about-feature {
        gap: 12px;
        font-size: 14px;
    }

    .ih-about-feature-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 12px;
    }
}
