/* Estilos para la sección introductoria */
#message-section {
    position: relative;
    padding: var(--large-padding);
    text-align: center;
    font-family: var(--font-family);
    margin: auto;
    margin-top: 10rem;

    & .intro-content::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -2;
        background: var(--url-bg-img-section);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    & .intro-content {
        position: absolute;
        top: 0;
        left: 0;
        padding: 4rem;
        height: 100vh;
        margin: auto;
        background-color: rgba(24, 11, 7, 0.7);
        display: flex;
        flex-direction: column;
        justify-content: center;

        & h2 {
            font-family: var(--font-family);
            color: var(--clr-20);
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        & p {
            font-size: 1.2rem;
            color: var(--clr-20);
            margin-bottom: var(--space-between-element);

            & strong {
                font-size: 1.3rem;
                display: block;
                margin-top: var(--space-between-element);
                margin-top: calc(var(--space-between-element)* 3);
                color: var(--clr-00);
            }
        }
    }
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    #message-section {
        padding: 2rem;
    }

    #message-section h2 {
        font-size: 4rem;
    }

    #message-section p {
        font-size: 1rem;
    }

    #message-section p strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #message-section {
        padding: 1rem;
    }

    #message-section h2 {
        font-size: 3rem;
    }

    #message-section p {
        font-size: 0.9rem;
    }

    #message-section p strong {
        font-size: 1rem;
    }
}