/* Fade-in Animation for Text and Logo */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

/* Subtle Parallax Effect for Background */
@keyframes parallax {
    0% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 50% 60%;
    }

    100% {
        background-position: 50% 50%;
    }
}

.parallax {
    animation: parallax 30s ease-in-out infinite;
}

/* Hover Animation for Logo */
.logo-hover:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.fw-500 {
    font-weight: 500 !important;
}

.message {
    font-weight: 300 !important;
}