@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

*{
    font-family: "Cormorant Garamond", serif;
}
#hero-section{
    background-image: url('../img/neon-lash-new-banner.jpg');
    background-size: 100% 100%;
    width: 100%;
    height: 120vh;
}
 /* Glow effect for heading */
 .glow-text {
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.8), 0 0 30px rgba(255, 20, 147, 0.6);
}

/* Smooth animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* #hero-section {
    background-image: url('../img/banner-neon.jpg');
    animation: backgroundFade 10s infinite alternate ease-in-out;
}

@media (max-width: 768px) {
    #hero-section {
        background-image: url('../img/banner-neon.jpg');
        background-size: cover;
        background-position: center;
    }
    .banner-text {
        text-align: center;
        width: 100%;
    }
}

@keyframes backgroundFade {
    0% {
        filter: brightness(0.9);
    }
    100% {
        filter: brightness(1);
    }
} */