/**
 * Hero Video Styling
 */

/* Hero Section */
.hero-section-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    background-color: var(--fp-dark);
}

.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--fp-dark);
}

.model-hero-image-section {
    position: relative;
    width: 100%;
    aspect-ratio: 12/5;
    overflow: hidden;
    background-color: var(--fp-dark);
}

.model-hero-image-section .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
}

/* Video Container */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Thumbnail */
.hero-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease;
    z-index: 2;
}

/* Video Element */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease;
    z-index: 1;
}

/* Play Button */
.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 3;
}

.hero-play-button i {
    font-size: 20px;
    color: var(--color-text);
    display: block;
    line-height: 1;
}

.hero-link:hover .hero-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.8);
}

/* Content Overlay */
.hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 3;
    transition: opacity 0.3s ease;
}

.hero-model-name {
    font-size: 1.25rem;
    color: var(--fp-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-episode-title {
    font-size: 2rem;
    color: white;
    margin: 0;
    line-height: 1.2;
}

/* Hover Effects */
.hero-link:hover .hero-content-overlay {
    opacity: 0.8;
}

/* Upcoming Episode Modifications */
.upcoming-play-button i {
    margin-left: 0; /* Reset margin for hourglass icon */
}

.upcoming-countdown-hero {
    margin-top: 1rem;
    color: var(--fp-light);
}

.countdown-timer {
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.countdown-unit {
    display: inline-block;
    margin: 0 0.5rem;
}

.countdown-number {
    font-weight: bold;
    color: white;
}

.countdown-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.countdown-separator {
    opacity: 0.5;
}

.release-date-display {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-content-overlay {
        padding: 1rem;
    }

    .hero-episode-title {
        font-size: 1.5rem;
    }

    .hero-model-name {
        font-size: 1rem;
    }

    .hero-play-button {
        width: 60px;
        height: 60px;
    }

    .hero-play-button i {
        font-size: 1.5rem;
    }

    .countdown-timer {
        font-size: 1rem;
    }
} 