/* INTRO SECTION */
.intro-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.intro-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.intro-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.intro-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
    z-index: 2;
}

.intro-content h2 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: pre-line; /* Preserve line breaks */
}

.intro-content p {
    font-size: var(--font-size-body);
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: pre-line; /* Preserve line breaks */
}

/* Responsive */
@media (max-width: 768px) {
    .intro-section {
        height: 90vh; /* Match desktop height */
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .intro-section {
        height: 90vh; /* Match desktop height */
    }
    
    .intro-content h2 {
        font-size: 1.75rem;
    }
}
