.section-content {
    margin-top: 90vh;
    padding: 8vh 0 4vh 0;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.8);
}


/* ========================================
     IMAGE OVERLAYS
   ======================================== */
.image-overlay-container {
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.image-overlay-container a {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.image-overlay-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-container p {
    padding: 0 0.5rem;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.2rem;
    padding: 0.7rem 0.2rem;
    text-align: center;
    z-index: 10;
    border-radius: 0 0 0.4rem 0.4rem;
}


/* ========================================
   PARALLAX BACKGROUND
   ======================================== */
.parallax {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: #33BED433;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    animation: bounce 4s infinite;
    transition: opacity 0.3s ease;
}

.scroll-hint::after {
    content: '';
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg) translate(-2px, -2px);
}

@keyframes bounce {

    0%,
    100% {
        bottom: 2rem;
    }

    50% {
        bottom: 2.6rem;
    }
}



.gallery {
    columns: 200px;
    /* min column width — browser decides how many fit */
    column-gap: 1rem;
    padding-bottom: 1rem;
    column-fill: balance;
    margin-bottom: 1rem;
}

.gallery img {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    border-radius: 0.2rem;
    break-inside: avoid;
}

@media (max-width: 500px) {
    .gallery {
        columns: 100px;
        column-gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .gallery img {
        margin-bottom: 0.5rem;
    }

}