/* Banner and Animated Text Styles */
.banner {
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    overflow: hidden;
}

.ovr-hdn {
    overflow: hidden;
}

.banner-text {
    position: absolute;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-blue, .blue {
    color: #3498db;
}

.font-big {
    font-size: 2.5rem;
}

/* Animated Text */
.animate-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.anim {
    position: absolute;
    width: 400px;
}

.anim span {
    display: block;
    position: absolute;
    font-weight: 500;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    transition: opacity 3s ease, transform 3s ease;
}

/* Positioned animations exactly as in the screenshot */
.anim1 {
    top: 6%;
    left: 5%;
    animation: randomFade 15s infinite;
}

.anim2 {
    top: 12%;
    right: 20%;
    animation: randomFade 15s infinite 3s;
}

.anim3 {
    top: 20%;
    left: 25%;
    animation: randomFade 15s infinite 6s;
}

.anim4 {
    top: 25%;
    right: 15%;
    animation: randomFade 15s infinite 9s;
}

.anim5 {
    top: 65%;
    left: 15%;
    animation: randomFade 15s infinite 12s;
}

.anim6 {
    top: 72%;
    right: 30%;
    animation: randomFade 15s infinite 15s;
}

.anim7 {
    top: 80%;
    right: 25%;
    animation: randomFade 15s infinite 18s;
}

.anim8 {
    top: 5%;
    left: 40%;
    animation: randomFade 15s infinite 21s;
}

/* Text animations with original timing */
#anims-2 {
    animation: textFade 15s infinite;
}

#anims2-1 {
    animation: textFade 15s infinite 0.5s;
}

#anims3-1 {
    animation: textFade 15s infinite 1s;
}

#anims4-2 {
    animation: textFade 15s infinite 1.5s;
}

#anims5-1 {
    animation: textFade 15s infinite 2s;
}

#anims6-2 {
    animation: textFade 15s infinite 2.5s;
}

#anims7-2 {
    animation: textFade 15s infinite 3s;
}

#anims8-2 {
    animation: textFade 15s infinite 3.5s;
}

@keyframes randomFade {
    0%, 100% {
        opacity: 0;
    }
    5%, 95% {
        opacity: 1;
    }
}

@keyframes textFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10%, 40% {
        opacity: 0.4;
        transform: translateY(0);
    }
    60%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 2.5rem;
    }
    
    .font-big {
        font-size: 1.8rem;
    }
    
    .anim span {
        font-size: 0.9rem;
    }
}
