.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin-top: 15vh;
}

/*.glass-effect {*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    backdrop-filter: blur(10px);*/
/*    -webkit-backdrop-filter: blur(10px);*/
/*    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
/*}*/

/*!* Animacje *!*/
/*.fade-in {*/
/*    opacity: 0;*/
/*    animation: fadeIn 0.8s forwards;*/
/*}*/

/*.delay-1 {*/
/*    animation-delay: 0.3s;*/
/*}*/

/*.delay-2 {*/
/*    animation-delay: 0.6s;*/
/*}*/

@keyframes fadeIn {
    to { opacity: 1; }
}
