/* 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: #2c3e50;
    background-color: #FEFDFA;
}

/* Typography - Headings use Space Grotesk as fallback for PP Formula */
h1, h2, h3, h4, h5, h6 {
    font-family: 'PP Formula', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

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

/* Header */
header {
    background: #f8f9fa;
    color: #000000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    /* Logo is now naturally positioned on the left */
}

nav {
    display: flex;
    gap: 2rem;
}

.logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
    position: relative;
}

nav a:hover {
    opacity: 0.7;
}

nav a.active {
    opacity: 0.8;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
    align-self: center;
}

.dropdown-toggle {
    color: #000000;
    text-decoration: none;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: inline-block;
    vertical-align: baseline;
}

.dropdown-toggle:hover {
    opacity: 0.7;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #000000 !important;
    text-decoration: none;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700 !important;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    opacity: 1 !important;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

/* Add pseudo-element to bridge the gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: transparent;
    z-index: 999;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: white;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.hero p {
    font-size: 1.2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #f8f9fa;
    background: #f8f9fa;
    color: #000000;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #f8f9fa;
    color: #000000;
    border-color: #f8f9fa;
    font-weight: 700;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.video-card.hidden {
    display: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f1f5f9;
}

.video-thumbnail video,
.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000000;
}

.video-info p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.duration {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

footer .links {
    display: flex;
    gap: 2rem;
}

footer .links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    footer .links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        margin: 0;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card {
    animation: fadeIn 0.6s ease-out;
}

/* CTA Banner */
.cta-banner {
    background: #00E3AA;
    padding: 3rem 0;
    margin-top: 4rem;
}

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

.cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-text {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.5rem 0;
}

.cta-subtext {
    font-size: 12px;
    color: #000000;
    margin: 0;
    text-align: left;
}

.cta-button {
    background: #FEFDFA;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-left {
        align-items: center;
    }
    
    .cta-text {
        font-size: 1.5rem;
    }
    
    .cta-subtext {
        text-align: center;
    }
}

/* Podcast-Specific Styles */
.podcast-hero {
    text-align: center;
    padding: 4rem 0 3rem 0;
    background: white;
    margin-bottom: 3rem;
}

.podcast-header {
    margin-bottom: 3rem;
}

.podcast-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.podcast-description {
    font-size: 1.3rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.podcast-platforms {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-btn.apple {
    background: #000000;
}

.platform-btn.spotify {
    background: #1DB954;
}

.platform-btn.spotify:hover {
    background: #1ed760;
}

.episodes {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.episode-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.episode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.episode-video {
    background: #f8f9fa;
}

.episode-video iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.episode-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.episode-number {
    display: inline-block;
    background: linear-gradient(135deg, #00E3AA 0%, #3333FF 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.episode-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
}

.episode-guests {
    font-size: 1rem;
    color: #000000 !important;
    margin: 1rem 0 1.5rem 0;
    font-style: normal;
}

.episode-guests strong {
    color: #000000 !important;
    font-style: normal;
    font-weight: 600;
}

.episode-description {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.episode-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.episode-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.episode-link:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.spotify-link {
    background: #1DB954;
    color: white;
}

.spotify-link:hover {
    background: #1ed760;
}

.coming-soon {
    color: #94a3b8;
    font-style: italic;
    padding: 0.75rem 0;
}

/* Podcast Responsive Design */
@media (max-width: 1024px) {
    .episode-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .episode-video {
        order: -1;
    }
    
    .episode-video iframe {
        min-height: 250px;
    }
    
    .episode-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .podcast-title {
        font-size: 2.5rem;
    }
    
    .podcast-description {
        font-size: 1.1rem;
    }
    
    .platform-btn {
        padding: 0.8rem 1.5rem;
    }
    
    .episode-title {
        font-size: 1.5rem;
    }
    
    .episode-description {
        font-size: 1rem;
    }
    
    .episode-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .podcast-title {
        font-size: 2rem;
    }
    
    .podcast-platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-btn {
        width: 200px;
        justify-content: center;
    }
}