:root {
    --parallax-height: 0;
    --navbar-height: 0;
    --announcement-bar-height: 0;
    --footer-height: 0;
    --brand-color: rgb(17, 85, 161);
    --scroll-arrow-width: 50px;
}
body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}
.parallax-container {
    min-height: calc(100vh + var(--navbar-height) - var(--footer-height));
    scroll-snap-type: y mandatory;
    position: relative;
}
.parallax-image {
    height: var(--parallax-height);
    background-image: url(/assets/img/parallax/1654d25a-5b00-4ff1-bde8-de492244d362.jpeg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.parallax-image-2 {
    background-image: url(/assets/img/parallax/83decfe2-519b-4b0a-a0e0-8a78ac917090.jpeg);
}
@media (max-width: 768px) {
    .parallax-image {
        background-attachment: scroll;
        background-size: cover;
    }
}
.center-content {
    text-align: center;
    color: #000;
    padding: 2rem;
    border-radius: 1rem;
    margin: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    max-width: 500px;
    border: solid 2px var(--brand-color);
}
.center-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.center-content p {
    font-size: 1.2rem;
}
.content-section {
    min-height: calc(100vh - var(--navbar-height));
    scroll-snap-align: start;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: calc(50% - (var(--scroll-arrow-width) / 2));
    transform: translateY(0);
    color: var(--brand-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 7px 14px;
    height: fit-content;
    border-radius: 4rem;
    animation: bounce 2s infinite;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--brand-color);
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
