/* Main Layout & Sections */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.brand-text span {
    color: var(--accent-pink);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-pink);
    margin-bottom: var(--space-md);
    margin-top: 100px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #1d1d1f 0%, #434344 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Latest Episode Section */
.latest-episode-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-surface);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: black;
    cursor: pointer;
}

.video-wrapper iframe,
.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(230, 0, 126, 0.9);
    /* Brand Pink */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.play-button svg {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 4px;
    /* Optical center */
    transition: fill 0.2s ease;
}

.play-button:hover svg {
    fill: var(--accent-pink);
}

.video-wrapper.playing .video-cover,
.video-wrapper.playing .play-button {
    display: none;
}

/* Catalogue - Netflix Style */
.catalogue-section {
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.catalogue-scroll {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding: var(--space-md) var(--space-lg) var(--space-xl) var(--space-lg);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.catalogue-scroll::-webkit-scrollbar {
    display: none;
}

.episode-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border-radius: var(--radius-md);
    background: white;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.episode-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.card-thumb {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: var(--space-md);
}

.card-ep-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-pink);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

/* About Sections */
.about-section {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.brand-section {
    background: #000;
    color: white;
    padding: var(--space-2xl) 0;
    text-align: center;
}

.brand-section h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.brand-section p {
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: var(--space-2xl) 0;
    background: var(--bg-surface);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.footer-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-pink);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--accent-pink);
    color: white;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-pink-hover);
    transform: scale(1.02);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
}

/* Hosts Section */
.hosts-section {
    padding: var(--space-2xl) 0;
    background: white;
}

.hosts-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.hosts-section .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-pink);
    margin-bottom: var(--space-md);
}

.hosts-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hosts-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hosts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .hosts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.host-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.host-image-container {
    width: 100%;
    aspect-ratio: 3.5/4;
    /* Slightly taller than square, nice portrait ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-surface);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.host-card:hover .host-image-container {
    box-shadow: var(--shadow-md);
}

.host-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    --scale-factor: 1;
    /* Default scale */
    transform: scale(var(--scale-factor));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.host-card:hover .host-image {
    transform: scale(calc(var(--scale-factor) * 1.05));
}

/* Crop Adjustment based on side positions */
.thiago-crop {
    object-position: 25% 30%;
    /* Focus on Left person */
}

.jean-crop {
    object-position: 95% 35%;
    /* Focus on Right person */
    --scale-factor: 1.8;
    /* Zoom in to exclude Thiago */
}

/* Zoom in to exclude Thiago */
}

.host-text-content {
    text-align: left;
}

.host-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.host-name::after {
    content: '';
    display: block;
    height: 2px;
    width: 40px;
    background: var(--accent-pink);
    opacity: 0.5;
}

.host-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hosts-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}