/* Masquer l'en-tête natif OceanWP */
#site-header {
  display: none !important;
}

/* Polices globales */
body, p, a, li, input, textarea, button {
  font-family: 'Roboto', sans-serif;
}

/* En-tête */
header.lo-boes-custom-header {
  background: #1A1A1A !important;
  padding: 20px 0 !important;
  width: 100%;
}

/* Container principal (Bureau: Logo gauche, Menu droit) */
header.lo-boes-custom-header .lo-boes-header-container {
  display: flex;
  flex-direction: row; /* Bureau: alignement horizontal */
  justify-content: space-between; /* Espace entre logo et menu */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo (Agrandit) */
header.lo-boes-custom-header .lo-boes-logo img {
  max-height: 160px !important; /* Logo encore plus grand */
  width: auto;
  height: auto;
  display: block; 
}

/* Nav Group (Bureau: Menu + Bouton alignés horizontalement) */
header.lo-boes-custom-header .lo-boes-nav-group {
	display: flex;
	flex-direction: row; 
	align-items: center;
	gap: 40px; /* Plus d'espace entre le menu et le bouton contact */
}


/* Menu (Boutons agrandis) */
header.lo-boes-custom-header .lo-boes-nav ul {
  display: flex;
  flex-wrap: wrap; 
  justify-content: flex-end; /* Aligné à droite */
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px; /* Plus d'espace entre les liens */
}

header.lo-boes-custom-header .lo-boes-nav ul li a {
  font-family: 'Roboto', sans-serif !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 1.3em !important; /* Liens du menu plus grands */
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  padding: 10px 0 !important;
  border-bottom: 2px solid transparent !important; /* Ligne de survol plus visible */
  transition: border-bottom 0.3s ease !important;
}

header.lo-boes-custom-header .lo-boes-nav ul li a:hover {
  border-bottom-color: #2A5C44 !important;
}


/* Bouton CONTACT (Agrandit) */
header.lo-boes-custom-header .lo-boes-contact-btn {
  font-family: 'Bebas Neue', cursive !important;
  background: #2A5C44 !important;
  color: #FFFFFF !important;
  padding: 15px 35px !important; /* Bouton plus grand (padding) */
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 1.4em !important; /* Texte du bouton plus grand */
  border-radius: 4px !important; /* Léger arrondi */
  transition: background 0.3s ease !important;
  display: inline-block;
}

header.lo-boes-custom-header .lo-boes-contact-btn:hover {
  background: #1E402F !important;
}

/* Responsive : Tablette & Mobile (Centrage) */
@media (max-width: 992px) {
  header.lo-boes-custom-header .lo-boes-header-container {
    flex-direction: column; /* Centrage vertical */
    gap: 25px; 
  }

  header.lo-boes-custom-header .lo-boes-logo img {
      max-height: 120px !important; /* Ajustement taille logo tablette/mobile */
      margin: 0 auto;
  }

  header.lo-boes-custom-header .lo-boes-nav-group {
  	flex-direction: column; 
  	width: 100%;
  	gap: 20px; 
  }

  header.lo-boes-custom-header .lo-boes-nav ul {
    justify-content: center; /* Menu centré */
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header.lo-boes-custom-header .lo-boes-logo img {
      max-height: 100px !important; /* Ajustement taille logo mobile */
  }

  header.lo-boes-custom-header .lo-boes-nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  header.lo-boes-custom-header .lo-boes-nav ul li a {
    font-size: 1.2em !important;
  }

  header.lo-boes-custom-header .lo-boes-contact-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.3em !important;
  }
}
