.Navbar {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  background-color: #0a102b;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Ombre légère pour le relief */
  position: sticky;
  top: 0;
  z-index: 1000;
  max-height: 100px;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 auto;
    width: 100%;
}
.brand-group {
    display: flex;
    align-items: center;
    gap: 15px;
 
}

.logo-img {
  max-height: 100px;
}

.link-nav {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px 15px;
    border: 1px solid #cdad7d;
    border-radius: 5px;
    transition: 0.3s;
    
}

.link-nav:hover {
    background: #cdad7d;
    color: #0a102b;
}



.nav-links{
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
   justify-content: space-between;
  gap: clamp(10px, 2vw, 25px);
}



.contact-button-nav {
    background-color: #ff914d;
    color: #f5f2ed;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.contact-button-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.4);
}

/* --- BURGER MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #f5f2ed;
    transition: 0.3s;
}






/*@media(max-width: 576px)
{

/* .EnTete { }*/
/* .Logo{}*/
/* .Navbar { }*/
/* .nav-links { }*/
/* .contact-button { }*/
/* .Section1{}*/
/* .Section2{}*/
/* .Pied{}

}*/
@media(max-width: 1464px) {


    .hamburger { display: flex !important; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background-color: #0a102b;
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
/* Animation par le haut */
        max-height: 0;         /* Caché par défaut */
        overflow: hidden;      /* Empêche le texte de dépasser quand c'est fermé */
        opacity: 0;
        transition: all 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
    }

  /* Quand on clique sur le burger (via JS) */
    .nav-links.active {
        max-height: 500px;     /* On lui donne une hauteur suffisante pour tout afficher */
        opacity: 1;
        padding: 30px 0;
    }

    /* Animation du Burger en "X" */
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* Ajustement des boutons dans le menu mobile */
    .link-nav, .contact-button-nav {
        width: 80%; /* Pour que les boutons ne soient pas trop larges sur mobile */
        text-align: center;
    }

/* .EnTete { }*/
/* .Navbar { }*/
/* .contact-button { }*/
/* .Section1{}*/
/* .Section2{}*/
/* .Pied{}*/

.logo-img { height: 50px; }

.logo-text { display: flex; 
  flex-direction: row; 
  gap: 2px; }

.logo-nom { height: 20px; }
.logo-slogan { height: 30px; }
}
@media(max-width:768px)
{
    .logo-slogan{ display: none;

    }
}
 