/* ========================================================================== */
/* custom-styles.css                                                          */
/* -------------------------------------------------------------------------- */
/* Modifications du site a-s-m/fr                                                      */
/* Date de mise à jour : 24.11.25                                          */
/* Rôle : regrouper le CSS présent dans le code html pour l'alléger
/* et éviter les erreurs 
/* Auteur : Anna                 */
/* ========================================================================== */


/* -------------------------------------------------------------------------- */
/* 01. LAYOUT                                                                  */
/* -------------------------------------------------------------------------- */

/* Общие стили header для всех страниц с .bloc07-btn */

/* ШАПКА */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    background: #fff;
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* ЛОГО */
.logo-btn {
    position: relative;
    display: inline-block;
}

.logo-btn img {
    width: 155px;
    height: 155px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    z-index: 2;
    transition: transform .3s ease;
}

.logo-btn::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(249,1,6), rgb(253,129,44));
    filter: blur(3px);
    opacity: 0;
    z-index: 1;
    border-radius: 50%;
    transition: opacity .3s ease, transform .3s ease;
}

.logo-btn:hover::before {
    opacity: 0.44;
    transform: scale(.7);
}

.logo-btn:hover img {
    transform: scale(1.05);
}

/* СЛОГАН */
#header-slogan {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
    width: 420px;
}

/* FACEBOOK */
.fb-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 60px;
}

.fb-text {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: bold;
}

.fb-icon img {
    height: 25px;
    width: auto;
    cursor: pointer;
    transition: transform .3s ease;
}

.fb-icon img:hover {
    transform: scale(1.15);
}


