.image-stack {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    display: flex;
}

.parallax-image {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30vh;
}

.text-content h1,
.text-content p {
    margin: 0;
}

.text-content {
    position: absolute;
    background: #070923;
    width: 100vw;
    color: #191C50;
    text-align: center;
}

@keyframes moveDown {
    from {
        top: 5vh;
    }

    to {
        top: 35vh;
    }
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.svg-h35-windows {
    transition: opacity 0.5s ease-in;
}

.svg-h35-windows.visible {
    opacity: 1;
}

.centered-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    text-align: center;
    padding-top: 12vh;
    font-family: 'Inter', sans-serif;
}

.centered-text p {
    font-size: calc(5px + 0.5vw);
    margin: 1rem 2vw;
    color: #191C50;
}
body,
.centered-text,
.text-content {
    font-family: 'Inter', sans-serif;
}


.centered-text h1 {
    font-size: calc(30px + 1.5vw);
    margin: 0 2vw;
    letter-spacing: -0.15rem;
    color: #ed7658;
}

#email-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#email-signup button {
    background-color: #FEF1A5;
    color: #3192a5;
    border: none;
    border-radius: 2rem;
    padding: 0.6em 2em;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0px 3px 3px #5cb0cf;
}

#email-signup button:hover {
    background-color: #fff7d1;
}

#email-signup input[type="email"] {
    padding: 0.6em 1.2em;
    border: none;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: #2D7497;
    background-color: #F7F7FB;
    box-shadow: 0 2px 8px rgba(45, 116, 151, 0.07);
    outline: none;
    margin-bottom: 0.2em;
    width: 220px;
    height: 15px;
    max-width: 80vw; 
}

.sun {
    width: 30vh;
    top: 0;
    left: 5vh;
    right: auto;
    bottom: auto;
    position: absolute;
    z-index: -1;
    animation: moveDown 1.5s ease-out forwards;
}

.intown-special {
    color: #232770;
    /* text-shadow: 0 2px 5px #1d768d, 0 2px 10px #1d768d, 0 2px 20px #1d768d;   */
}

.svg-h85 {
    animation: mountainSlide0 1.2s ease-out forwards;
}

.svg-h75 {
    animation: mountainSlide 1.2s ease-out forwards;
}

.svg-h65,
.svg-h55 {
    animation: mountainSlide2 1.2s ease-out forwards;
}

.svg-h45,
.svg-h35 {
    animation: zoomIn 1.5s ease-out forwards;
}

.svg-h25,
.svg-h15 {
    animation: zoomIn2 1.5s ease-out forwards;
}

@property --color1 {
    syntax: '<color>';
    initial-value: #f99999;
    inherits: false;
}

@property --color2 {
    syntax: '<color>';
    initial-value: #bfe2e2;
    inherits: false;
}

body {
    margin: 0;
    padding: 0;
    --color1: #f99999;
    --color2: #bfe2e2;
    background: linear-gradient(180deg, var(--color1), var(--color2));
    animation: gradientColors 2s ease-out forwards;
}

@keyframes gradientColors {
    from {
        --color1: #CEF3F3;
        --color2: #CEF3F3;
    }

    to {
        --color1: #CEF3F3;
        --color2: #fc8462;
    }
}

@keyframes mountainSlide {

    to {
        bottom: -40vh;
    }
}

@keyframes mountainSlide0 {

    to {
        bottom: -50vh;
    }
}

@keyframes mountainSlide2 {
    to {
        bottom: -35vh;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.02) translateY(-15vh);
    }
}

@keyframes zoomIn2 {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.1) translateY(-10vh)
    }
}


@media only screen and (max-width: 1100px) {
    @keyframes mountainSlide {
    from {
        bottom: 0;
    }

    to {
        bottom: -10vh;
    }
}

@keyframes mountainSlide2 {
    from {
        bottom: 0;
    }

    to {
        bottom: -5vh;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.02) translateY(-20vh);
    }
}

@keyframes zoomIn2 {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.1) translateY(-10vh)
    }
}

.sun {
    width: 30vh;
    position: absolute;
    z-index: -1;
    animation: moveDown 1.5s ease-out forwards;
    left: auto;
    right: auto;
    top: auto;
    bottom:auto;
}

@keyframes moveDown {
    from {
        top: 40vh;
    }

    to {
        top: 60vh;
    }
}

}

