/* ===================================
   Custom Video Controls
   =================================== */
.hero-video-controls {
    position: absolute;
    bottom: 50px;
    left: 30px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.control-btn:hover {
    color: var(--color-red);
}

.control-btn i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.control-divider {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Vimeo Background - Responsive Cover */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* Screen is wider than 16:9 - Fit to Width */
@media (min-aspect-ratio: 16/9) {
    .video-background iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* Screen is narrower than 16:9 - Fit to Height */
@media (max-aspect-ratio: 16/9) {
    .video-background iframe {
        width: auto;
        height: 100%;
        aspect-ratio: 16/9;
    }
}

/* Slide Overlay for Dragging */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: grab;
}

.slide-overlay:active {
    cursor: grabbing;
}

/* Ensure Controls are Clickable */
.slider-pagination {
    z-index: 20 !important;
}

.slider-arrow {
    z-index: 20 !important;
}

.hero-content {
    z-index: 15 !important;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-video-controls {
        bottom: 80px;
        left: 20px;
    }

    .control-btn {
        font-size: 12px;
    }

    .control-btn i {
        font-size: 16px;
    }
}