/* Header global */
header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  flex-wrap: wrap;
}

/* Bloc à gauche (logo + titre) */
#bloc1 {
display: flex;
align-items: center;
flex-wrap: wrap;
width:50%;
height: max-content;
column-gap: 10px;
color: white;
background-color: var(--blue-primary-rgba);
}


.header-logo {
width: clamp(80px, 10vw, 120px);
height: auto;
}

/* Texte du bloc1 */
#bloc1-text {
display: flex;
flex-direction: column;
justify-content: center;
gap: 2px;
padding: 0.2rem;
}

#bloc1-text h2 {
font-size: clamp(1.2rem, 3vw, 2rem);
margin: 0;
white-space: nowrap;
}

#bloc1-text h5 {
font-size: clamp(0.9rem, 2vw, 1.25rem);
margin: 0;
}

#bloc1-text p {
margin: 0;
font-size: 0.8rem;
}


#btn-tel a {
  margin-left: 30px;
  background: white;
  padding: 7px 10px 7px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #053545;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

#btn-tel a:hover {
  background-color: var(--alert);
  color: white;
  transform: translateY(-2px);
}

/* Navigation */
.menu-nav ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem;
margin: 0;
margin-right: 5px;
background-color: transparent;
}

.menu-nav ul li.btn {
list-style: none;
}


.menu-nav ul li.btn a {
background-color: transparent;
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 5px;
font-size: 0.95rem;
display: inline-block;
transition: all 0.3s ease;
}

.menu-nav ul li.btn:hover a {
background-color: white;
color: #053545;
}

/* Bouton menu mobile */
.menu-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
#bloc2 {
    display: flex;
    background-color: var(--blue-primary-rgba);
    align-items: center;
    justify-content: end;
    width: 50%;
}
/* Affiche le bouton en dessous de 768px */
@media screen and (max-width: 600px) {
#bloc2 {
    flex-direction: column;
    width: 30%;
    justify-content: center;
}
#bloc1 {
    width: 70%;
}
.menu-toggle {
  display: block;
  margin-right: 5px;
}

/* Cache le menu au début */
.menu-nav ul {
  display: none;
}

/* Menu actif (affiché) */
.menu-nav.active ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}
}
