/**
 * DRAK - Wideo w tle sekcji
 * Efekt wideo (np. opona) na dole sekcji produktów
 */

.drak-bg-video-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.drak-bg-video {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    mix-blend-mode: screen;
    opacity: 0.85;
}

/* Gradient mask - wideo zanika ku górze */
.drak-bg-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        #0a0a0a 0%,
        rgba(10, 10, 10, 0.7) 10%,
        rgba(10, 10, 10, 0.4) 30%,
        rgba(10, 10, 10, 0.2) 60%,
        transparent 100%
    );
    pointer-events: none;
}

/* Responsywność */
@media (max-width: 990px) {
    .drak-bg-video-container {
        height: 300px;
    }

    .drak-bg-video {
        opacity: 0.75;
    }
}

@media (max-width: 749px) {
    .drak-bg-video-container {
        height: 220px;
    }

    .drak-bg-video {
        opacity: 0.65;
    }
}
