/* Reset léger */
html, body { margin: 0; padding: 0; }

/* On cache le header Jimdo (celui qui dépend du JS Jimdo) */
header.sYlm8 { display: none !important; }

/* Header statique */
.site-header{
  position: sticky;
  top: 0;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.10);
}

.site-header .wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header .logo{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header .logo img{
  height: 46px;
  width: auto;
  display: block;
}

.site-header nav{
  flex: 1 1 auto;
  min-width: 0;
}

.site-header nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.site-header nav a{
  text-decoration: none;
  color: #111;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.site-header nav a:hover{
  color: #ff5a00;
}

.site-header .actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.site-header .btn-contact{
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-header .btn-contact:hover{
  opacity: 0.92;
}

.site-header .social{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-header .social a{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ff5a00;
}

.site-header .social a:hover{
  background: rgba(0,0,0,0.06);
}

.site-header .social svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 800px){
  .site-header .wrap{ gap: 16px; }
  .site-header nav ul{ gap: 16px; }
  .site-header .btn-contact{ padding: 9px 14px; }
}
