/* Zaawansowany slider */
.carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.html-slider {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* Responsywność */
@media (max-width: 767px) {
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .html-slider {
        min-height: 300px;
    }
}