.welcome {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../img/landing/welcome.jpg') center center / cover no-repeat;
}

.welcome::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.welcome-content {
    position: absolute;
    left: 0;
    top: 8rem;
    width: 100%;
    text-align: center;
    z-index: 2;
}

@media (max-width: 850px) {
    .welcome-content {
        top: 3rem;
    }
}

.welcome-content h1 {
    font-weight: 400;
    font-size: 5rem;
    text-shadow: 0 0 10px rgba(255, 235, 150, 0.3);
}

.welcome p {
    font-size: 1.25rem;
    color: #dddddd;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
    z-index: 2;
}

.scroll-indicator.hidden {
    display: none;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

.intro-section {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--accent);
    text-align: center;
}

