/* HEADER GLOBAL */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1300px;
    margin: auto;
}

#ctn_emphasis{
    width:100%;
    padding:2px;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
}

/* LOGO */
.logo img {
    /*height: 50px;*/
    width:255px;
}

/* NAVIGATION */
.nav ul {
    display: flex;
    gap:20px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
    text-transform:uppercase;
    font-weight:bold;
}

.nav a:hover {
    /*color: #4967c2;*/
    font-weight: bold;
    padding: 10px;
    background-color: #0010ff38;
}


.phone-number{
    font-size:20px;
}

/* TELEPHONE CTA */
.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    /*background: linear-gradient(135deg, deeppink, #ff4da6);*/
    background: linear-gradient(191deg, #0040d7, #1c5db1);
    color: white;
    padding: 7px 18px 7px 8px;
    border-radius: 66px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.phone-btn:hover {
    transform: translateY(-2px);
}

.phone-icon {
    background: white;
    color: deeppink;
    padding: 5px 9px;
    border-radius: 57px;
}

/* BURGER MENU */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    height: 4px;
    width: 25px;
    background: #333;
    margin: 4px;
    border-radius: 3px;
}


/* RESPONSIVE DG */
@media (max-width: 1029px) {
    .nav ul {
        gap:5px;

    }

    .logo img {
        transition: width 1s;
        width:200px;
    }
}

/* RESPONSIVE DG */
@media (min-width: 1031px) {
    .nav ul {
        transition: gap 1s;
        gap:5px;

    }



    .logo img {
        transition: width 1s;
        width:255px;
        vertical-align: center;
    }
}





/* RESPONSIVE */
@media (max-width: 900px) {



    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav ul {
        gap:1px;

    }

    .nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav.active {
        display: flex;
    }

    .burger {
        display: flex;
    }

   
    
     .phone-contact {
        display: block;
        -webkit-transform: scale(0.79); /* Safari / anciens Android */
        -ms-transform: scale(0.79);     /* vieux IE mobile */
         transform: scale(0.79);
        min-width: 199px !important;
        margin-left: -5px !important;
    }
    
    .phone-number{
        font-size:17px;
    }
    
    .logo img {
        transition: width 1s;
        width:150px!important;
    }
}

@media(max-width:430px){
    .logo img {
        transition: width 1s;
        width:95px!important;
    }
}




