/* Body background color */
body {
    background-color: #5b6d95;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.text-shadow-custom {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Ensure full width and height for the parallax container */
.parallax-container {
    width: 100vw;
    height: 120vh;
    position: relative;
    overflow: hidden;
}

/* Adjust the main content positioning */
.main-content {
    margin-top: 120vh;
}

/* Ensure images cover the entire container */
.parallax-container img {
    width: 100%;
    height: 120%;
    object-position: bottom;
}

/* Snow effect */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

.snow {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.8;
}

.snow:nth-child(1) {
    left: 7%;
    animation: fall 10s linear infinite;
}

.snow:nth-child(2) {
    left: 15%;
    width: 8px;
    height: 8px;
    animation: fall 12s linear infinite 1s;
}

.snow:nth-child(3) {
    left: 25%;
    width: 12px;
    height: 12px;
    animation: fall-rotate 11s linear infinite 2s;
}

.snow:nth-child(4) {
    left: 35%;
    width: 6px;
    height: 6px;
    animation: fall 13s linear infinite 0s;
}

.snow:nth-child(5) {
    left: 45%;
    animation: fall-rotate 10s linear infinite 3s;
}

.snow:nth-child(6) {
    left: 55%;
    width: 9px;
    height: 9px;
    animation: fall 12s linear infinite 4s;
}

.snow:nth-child(7) {
    left: 65%;
    width: 11px;
    height: 11px;
    animation: fall-rotate 11s linear infinite 2s;
}

.snow:nth-child(8) {
    left: 75%;
    animation: fall 13s linear infinite 1s;
}

.snow:nth-child(9) {
    left: 85%;
    width: 7px;
    height: 7px;
    animation: fall 10s linear infinite 0s;
}

.snow:nth-child(10) {
    left: 95%;
    width: 10px;
    height: 10px;
    animation: fall-rotate 12s linear infinite 3s;
}

.snow:nth-child(11) {
    left: 5%;
    width: 8px;
    height: 8px;
    animation: fall 11s linear infinite 2s;
}

.snow:nth-child(12) {
    left: 20%;
    animation: fall-rotate 13s linear infinite 1s;
}

.snow:nth-child(13) {
    left: 30%;
    width: 9px;
    height: 9px;
    animation: fall 12s linear infinite 3s;
}

.snow:nth-child(14) {
    left: 40%;
    width: 6px;
    height: 6px;
    animation: fall-rotate 10s linear infinite 0s;
}

.snow:nth-child(15) {
    left: 50%;
    animation: fall 11s linear infinite 2s;
}

@keyframes fall {
    0% {
        top: -10px;
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0.3;
    }
}

@keyframes fall-rotate {
    0% {
        top: -10px;
        transform: rotate(0deg);
        opacity: 0.8;
    }

    100% {
        top: 100%;
        transform: rotate(360deg);
        opacity: 0.3;
    }
}