.title {
    font-family: 'Krisha', 'sans-serif';
    font-size: 295px;
    text-transform: uppercase;
    text-shadow: 0 1px 5px rgba(13, 25, 17, 0.20);
}

.tagline {
    font-size: 32px;
    width: 70vw;
    text-transform: uppercase;
    text-align: center;
    margin-top: -40px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -16px;
    margin-bottom: 3rem;
}

.images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin: 80px 0;
}

.gal-img {
    width: 700px;
}



@media screen and (max-width: 800px) {
    .gal-img {
        width: 500px;
    }

    .title {
        font-size: 225px;
        }

    .tagline {
        font-size: 24px;
        width: 80vw;
        margin-top: -30px;
        }
}

@media screen and (max-width: 600px) {
    .gal-img {
        width: 350px;
    }

    .images-container {
        gap: 20px;
        margin: 56px 0;
    }

    .title {
        font-size: 150px;
        }

    .tagline {
        font-size: 20px;
        margin-top: -20px;
        }
}



@media screen and (max-width: 400px) {
    .gal-img {
        width: 300px;
    }

    .images-container {
        gap: 16px;
        margin: 40px 0;
    }

    .title {
        font-size: 120px;
        }

    .tagline {
        font-size: 18px;
        margin-top: -15px;
        width: 90vw;
        }
}




.fade-in {
    opacity: 0;
    transform: translateY(10px); /* Optional: slight upward motion */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}