/* =========================================================
   AGENCE BE - PERSONNALISATION CASSIOPEIA
   ========================================================= */


/* =========================================================
   1. EN-TÊTE - LOGO
   ========================================================= */

.container-header .navbar-brand img {
    width: auto;
    height: 120px;
    max-width: 350px;
    object-fit: contain;
}

.container-header .navbar-brand {
    margin: 0;
    padding: 10px 0;
}


/* =========================================================
   2. EN-TÊTE - LOGO + MENU SUR LA MÊME LIGNE
   ========================================================= */

.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-left: max(40px, calc((100% - 1600px) / 2));
    padding-right: max(40px, calc((100% - 1600px) / 2));
}

.container-header > .grid-child {
    width: auto;
}

.container-header .container-nav {
    flex: 1;
    justify-content: flex-end;
}

.container-header .mod-menu {
    gap: 25px;
}


/* =========================================================
   3. FOOTER
   ========================================================= */

.container-footer {
    padding: 20px 0;
}

.container-footer .grid-child {
    width: 100%;
    max-width: none;
}

.container-footer .mod-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.container-footer .mod-menu li {
    margin: 0;
}

.container-footer .mod-menu a {
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.container-footer .mod-menu a:hover {
    text-decoration: underline;
}

.container-footer .mod-menu li + li::before {
    content: "|";
    color: rgba(255, 255, 255, 0.45);
    margin-right: 25px;
}


/* =========================================================
   4. PAGE NOTRE AGENCE - INTRODUCTION
   ========================================================= */

.agencebe-intro {
    text-align: center;
    max-width: 950px;
    margin: 20px auto 45px;
}

.agencebe-intro h2 {
    color: #af924c;
    font-size: 2rem;
    margin-bottom: 25px;
}

.agencebe-accroche {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}


/* =========================================================
   5. PAGE NOTRE AGENCE - BLOCS DE TEXTE
   ========================================================= */

.agencebe-valeurs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 45px 0;
}

.agencebe-bloc {
    position: relative;

    padding: 28px 28px 28px 82px;

    background: #f7f7f7;
    border-left: 4px solid #af924c;
}

.agencebe-bloc p {
    margin: 0;
    line-height: 1.8;
    color: #555;
}


/* =========================================================
   6. PICTOGRAMMES DES BLOCS
   ========================================================= */

.agencebe-puce {
    position: absolute;

    left: 25px;
    top: 30px;

    width: 38px !important;
    height: 38px !important;

    object-fit: contain;
    display: block;
}


/* =========================================================
   7. BANDEAU GRENOBLE
   ========================================================= */

.agence-grenoble-banner {
    position: relative;

    width: 100%;

    margin: 35px 0 30px 0;

    overflow: hidden;
}


/* Photo de Grenoble uniquement */

.agence-grenoble-banner > img {
    display: block;

    width: 100%;
    height: 260px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   8. ANIMATION AGENCE BE SUR LE BANDEAU
   ========================================================= */

.agencebe-animation {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;

    pointer-events: none;
}


/* SVG animé uniquement */

.agencebe-animation img {
    display: block;

    width: auto;
    height: 210px;

    max-width: 90%;

    object-fit: contain;
}


/* =========================================================
   9. CITATION SUR LE BANDEAU
   ========================================================= */

.agencebe-citation {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 18px;

    text-align: center;

    z-index: 3;
}

.agencebe-citation h2 {
    margin: 0;

    padding: 0 25px;

    color: #333;

    font-size: 1.25rem;
    font-weight: 400;
}


/* =========================================================
   10. VERSION MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .container-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container-header .navbar-brand img {
        height: 90px;
    }

    .agencebe-valeurs {
        grid-template-columns: 1fr;
    }

    .agencebe-intro h2 {
        font-size: 1.6rem;
    }

    .agencebe-accroche {
        font-size: 1rem;
    }

    .agence-grenoble-banner > img {
        height: 230px;
    }

    .agencebe-animation img {
        height: 180px;
        max-width: 85%;
    }

    .agencebe-citation {
        bottom: 12px;
    }

    .agencebe-citation h2 {
        font-size: 1.1rem;
        padding: 0 15px;
    }

}