/**
 * Fichier  : /pages/homepage/header/assets/css/intro.css
 * Fonction : style de l'introduction (texte) de l'en-tête - page d'accueil
 */


/* ==================================================
   INTRO CONTAINER
================================================== */

#welcome .intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}


/* ==================================================
   SUBTITLE
================================================== */

#welcome .intro h2 {
    font-family: 'bold-font';
    font-size: 1.6em;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--color__3);
}

#welcome .intro h2 span {
    font-family: 'aesthetic-font';
}


/* ==================================================
   OVERLINE
================================================== */

#welcome .intro h5 {
    font-family: 'content-font';
    font-size: 8px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff;
}


/* ==================================================
   MAIN TITLE
================================================== */

#welcome .intro h3 {
    font-family: 'bold-font';
    font-size: 2.4em;
    text-shadow: 0 0 1px #000;
    letter-spacing: -1px;
    line-height: 1em;
    color: #fff;
}


/* ==================================================
   DESCRIPTION
================================================== */

#welcome .intro p {
    font-family: 'content-font';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 1024px) {

    #welcome .intro h5 {
        margin-top: -5px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    #welcome .intro h3 {
        font-size: 1.8em;
    }

    #welcome .intro p {
        display: none;
    }

}