/* ===== INDEX PAGE - Page-Specific Overrides ===== */
/* css/index.css — loaded after main.css and header.css */

/* Video container mobile clamp — overrides main.css component values */
.video-container,
.youtube-video-container {
    max-width: 100%;
    overflow: hidden;
}

/* Redirect modal mobile size override — overrides main.css 360px fixed width */
.redirect-content {
    max-width: 90vw;
    padding: 20px;
}

/* ===== INDEX HERO VIDEO — extracted from main.css (index-specific, not global) ===== */

.video-wrapper-modern {
    position: relative;
    width: 100%;
    background: #000;
}

.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    z-index: 3;
    pointer-events: all;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-thumbnail-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.play-button-overlay svg {
    display: block;
}
