/* ============================================
   Video Hero Section Styles
   ============================================ */

/* Section Container */
.section-video-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--paperwise-teal);
    border-radius: 40px;
}

/* Background Vector */
.section-video-hero .background-vector {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.section-video-hero .background-vector img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

/* Content Wrapper */
.section-video-hero .video-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
}

/* Section Title */
.section-video-hero .section-title {
    font-family: 'Impact', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2197265625;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F4F3EA;
    margin: 0 0 24px;
}

.section-video-hero .section-title .title-highlight {
    color: var(--paperwise-accent);
}

/* Section Description */
.section-video-hero .section-description {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5714285714;
    letter-spacing: 0.0286em;
    color: var(--paperwise-off-white);
    max-width: 940px;
    margin: 0 auto 40px;
}

/* Video Wrapper */
.section-video-hero .video-wrapper {
    width: 100%;
    max-width: 811px;
    margin: 0 auto;
}

/* Video Container */
.section-video-hero .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 59.21%; /* 480/811 ratio from Figma */
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.section-video-hero .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Play Button */
.section-video-hero .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 52px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-video-hero .video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.section-video-hero .video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.section-video-hero .video-play-button img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Video Iframe (when playing) */
.section-video-hero .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 1440px) {
    .section-video-hero .container {
        max-width: 1240px;    
	}
}
/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-video-hero .background-vector {
        width: 300px;
    }

    .section-video-hero .section-title {
        font-size: 32px;
    }

    .section-video-hero .section-description {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .section-video-hero .video-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .section-video-hero .background-vector {
        width: 250px;
    }

    .section-video-hero .section-title {
        font-size: 28px;
        letter-spacing: 0.12em;
        margin-bottom: 20px;
    }

    .section-video-hero .section-description {
        margin-bottom: 28px;
    }

    .section-video-hero .video-container {
        border-radius: 60px;
    }

    .section-video-hero .video-play-button {
        width: 70px;
        height: 42px;
    }
}

@media (max-width: 576px) {
    .section-video-hero .background-vector {
        width: 200px;
        opacity: 0.01;
    }

    .section-video-hero .section-title {
        font-size: 24px;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
    }

    .section-video-hero .section-description {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .section-video-hero .video-container {
        border-radius: 40px;
    }

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

/* Dark Mode Support */
[data-bs-theme="dark"] .section-video-hero {
    background-color: var(--dark-gray);
}

[data-bs-theme="dark"] .section-video-hero .section-title {
    color: var(--white);
}

[data-bs-theme="dark"] .section-video-hero .section-title .title-highlight {
    color: var(--paperwise-accent);
}

[data-bs-theme="dark"] .section-video-hero .section-description {
    color: var(--light-gray);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .section-video-hero .video-play-button {
        transition: none;
    }

    .section-video-hero .video-play-button:hover,
    .section-video-hero .video-play-button:active {
        transform: translate(-50%, -50%);
    }
}
