/* ==================================================
   HEADER WOERTHER
================================================== */

.site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: #f5b800;
    border-bottom: 1px solid #242424;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
}


/* ==================================================
   LOGO
================================================== */

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    height: 94px;
}

.brand-logo {
    display: block;
    width: auto;
    height: 74px;
    max-width: 360px;
    object-fit: contain;
}


/* ==================================================
   ZONE DROITE
================================================== */

.header-actions {
    display: flex;
    align-items: center;
    min-height: 94px;
}


/* ==================================================
   TÉLÉPHONE / E-MAIL
================================================== */

.header-contact {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 52px;
    padding: 0 22px;
    color: #ffffff;
    border-left: 1px solid #2e2e2e;
    transition: background-color .2s ease;
}

.header-contact:hover {
    background: #161616;
}

.header-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
}

.header-contact-icon svg {
    display: block;
    width: 23px;
    height: 23px;
    max-width: 23px;
    max-height: 23px;
    overflow: visible;
    fill: none;
    stroke: #f5b800;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-contact-text {
    display: flex;
    flex-direction: column;
}

.header-contact-text small {
    margin-bottom: 3px;
    color: #9f9f9f;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
}

.header-contact-text strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.15;
}


/* ==================================================
   RÉSEAUX SOCIAUX
================================================== */

.header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding-left: 22px;
    border-left: 1px solid #2e2e2e;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: #ffffff;
    border: 1px solid #343434;
    border-radius: 50%;
    background: transparent;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.social-link:hover {
    color: #0b0b0b;
    background: #f5b800;
    border-color: #f5b800;
}

.social-svg {
    display: block;
    width: 19px !important;
    height: 19px !important;
    max-width: 19px !important;
    max-height: 19px !important;
    min-width: 19px;
    min-height: 19px;
}

.social-facebook {
    fill: currentColor;
    stroke: none;
}

.social-instagram {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-instagram-dot {
    fill: currentColor;
    stroke: none;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {

    .brand-logo {
        height: 64px;
        max-width: 310px;
    }

    .header-contact {
        padding: 0 15px;
    }

    .header-socials {
        padding-left: 15px;
    }

}


@media (max-width: 850px) {

    .header-inner {
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 12px;
    }

    .brand {
        height: auto;
    }

    .header-actions {
        justify-content: center;
        width: 100%;
        min-height: auto;
        flex-wrap: wrap;
    }

    .header-contact:first-child {
        border-left: 0;
    }

}


@media (max-width: 600px) {

    .brand-logo {
        height: 54px;
        max-width: 270px;
    }

    .header-contact {
        min-height: 44px;
        padding: 0 10px;
        border-left: 0;
    }

    .header-contact-icon {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .header-contact-icon svg {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .header-contact-text small {
        display: none;
    }

    .header-contact-text strong {
        font-size: 12px;
    }

    .header-socials {
        padding-left: 0;
        border-left: 0;
    }

    .social-link {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

}
