/*
 Theme Name:  Excepcion 2 Child
 Template:    excepcion2
 Version:     1.0.0
*/

@charset "UTF-8";

/* ==========================================================================
   STRUCTURE GÉNÉRALE
   ========================================================================== */
.header {
    width: 100%;
    background-color: #ffffff;
}

/* ==========================================================================
   ZONE BUREAU (DÉCLENCHEMENT À 1170PX)
   ========================================================================== */
@media screen and (min-width: 1170px) {

    /* Le conteneur centré à 1170px */
    #masthead .container-1170 {
        width: 1170px;
        max-width: 1170px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }

    /* ZONE LOGO : Sécurité de 40px à droite */
    #masthead .container-1170 a.logo {
        display: inline-flex; 
        margin-right: 40px; /* L'écart que l'on veut forcer */
        flex-shrink: 0;
    }

    #masthead .container-1170 a.logo img {
        display: block;
        height: auto;
    }

    /* ZONE MENU : Écarts de 30px entre les liens */
    #masthead .container-1170 .menu-fixe {
        display: flex;
        align-items: center;
        gap: 30px; /* Espace entre chaque lien */
        margin: 0;
        padding: 0;
    }

    #masthead .container-1170 .menu-fixe a {
        text-decoration: none;
        white-space: nowrap;
        color: #333;
        font-weight: 500;
    }
}

/* ==========================================================================
   ÉCOULEMENT MOBILE (< 1170px)
   ========================================================================== */
@media screen and (max-width: 1169px) {
    .container-1170 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
}