/*────────────────────────────────────────────────────────────────────────────
  INTRO SECTION STYLES
────────────────────────────────────────────────────────────────────────────*/

.intro-section {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.intro-section p {
    font-size: 24px;
}

.header {
    position: absolute;
    top: 30px;
    right: 30px;
    margin-bottom: 0;
    text-align: right;
}

.header h1 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
}

.content {
    display: flex;
    justify-content: center;
}

.intro-text {
    max-width: 800px;
    text-align: justify;
}

.intro-text p {
    margin-bottom: 24px;
    color: var(--text);
}

.greeting {
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dark-text);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

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