body {
    background-color: #f2e8cf;
    font-family: "Berkshire Swash", serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.text-custom { color: #386641; }
.primary-custom { color: #6a994e; }
.secondary-custom { color: #a7c957; }
.accent-custom { color: #bc4749; }

.gradient-text {
    background: linear-gradient(to right, #386641, #bc4749);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 3.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
}


.flag-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.flag-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.flag-blue { background-color: #002B7F; }
.flag-yellow { background-color: #FCD116; }
.flag-red { background-color: #CE1126; }

.flag-column {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.path-container {
    position: relative;
    padding: 4rem 0;
}

.path {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #386641, #bc4749);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .path {
        opacity: 0.3;
    }
}

.journey-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin: 6rem 0;
}

.journey-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.snowfall-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #386641;
    font-size: 2rem;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

