/* ===== Couleurs principales ===== */
:root {
    --bleu: #084165;
    --or: #c09e0d;
    --blanc: #ffffff;
    --baloo: 'Fredoka', sans-serif;
    --lora: 'Lora', serif;
  }
  
  .top-header {
    background-color: var(--bleu);
    font-family: var(--lora);
    position: relative;
  }
  
  .btn-devis,
  .phone-box {
    background-color: var(--blanc);
    color: var(--or);
    border: 3px solid var(--or);
    font-family: var(--baloo);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.2;
    border-radius: 23px;
    padding: 8px 24px;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    text-shadow: 
      1px 0 var(--or),
      -0.4px 0 var(--or),
      0 0.25px var(--or),
      0 -0.25px var(--or);
  }

  .btn-devis:hover,
  .phone-box:hover {
    background-color: var(--or);
    color: var(--blanc);
    text-decoration: none;
    font-weight: 500; /* ou 700 si tu veux plus gras */
    font-family: var(--baloo)
  }
  
  .logo-img {
    max-height: 120px;
    width: auto;
  }
  .phone-icon {
    color: var(--or);
    font-size: 1.3rem;
    margin-right: 8px;
  }
  
  
  
  /* Responsive */
  @media (max-width: 767px) {
    .btn-devis, .phone-box {
      font-size: 0.9rem;
      padding: 6px 16px;
    }
  
    .logo-img {
      max-height: 70px;
    }
    .compas-bg {
      display: none; /* ou opacity: 0.05 si tu veux qu'il reste léger */
    }

    
  }
  
  .btn-devis {
    position: relative;
    z-index: 1003;
  }
  
  .menu-principal {
    background-color: var(--bleu); /* bleu opacifié */
    font-family: var(--baloo); /* même fonte que le reste */
    position: relative;
    z-index: 1000; /* sous le compas */
  }
  
  .menu-principal .nav-link {
    color: var(--blanc);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: color 0.2s, background-color 0.2s;
  }
  
  .menu-principal .nav-link:hover {
    color: var(--or);
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
  }
  .burger {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--blanc);
    z-index: 999;
    position: relative;
    padding: 0;
  }
  
  
  .fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
  }
  
  .icon-btn {
    background-color: var(--or);
    color: var(--blanc);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-decoration: none;
  }
  

  .p1{
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px; /* Ajout d'un espacement sous chaque paragraphe */
    font-family:'Lora';
  }
  h1{
    font-size: 32px;
    font-weight: 600;
    color: var(--bleu);
    margin-bottom: 10px;
    font-family:'Fredoka';
  }
  h2 {
    font-size: 28px;
    font-weight: 700; /* Plus gras pour donner de l'impact */
    color: #084165; /* Couleur bleu principale */
    margin-bottom: 20px; /* Augmentation de l'espace sous le titre */
    font-family:'Fredoka';
  }
  h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--bleu);
    margin-bottom: 10px;
    font-family:'Fredoka';
  }

  h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bleu);
    margin-bottom: 10px;
    font-family:'Fredoka';
  }

  .separator-compas {
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator-compas .line {
  flex-grow: 1;
  height: 4px;
  border-top: 4px dashed var(--bleu);
  opacity: 0.8;
}

.separator-compas .compas-icon {
  width: 70px;
  height: 70px;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


.text_extension strong {
    font-weight: 500;
    color: var(--or);
  }
@media (min-width: 768px) and (max-width: 1200px) {
  .container{
  max-width: 950px;

  }

}
/* Sous-menu */
.dropdown-menu {
  font-family: 'Lora', serif;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 0.5rem 0;
  border-radius: 8px;
  min-width: 220px;
  z-index: 10500; /* supérieur à celui de Bootstrap */
  position: absolute; /* nécessaire si tu veux que ça s'affiche par-dessus */
}
.dropdown-item {
  padding: 0.5rem 1.25rem;
  color: #084165;
  transition: background 0.3s ease;
}
.dropdown-item:hover {
  background-color: #f9f9f9;
  border-left: 4px solid #c09e0d;
  padding-left: calc(1.25rem - 4px);
}

.card-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-top: 4px solid #084165;
}

.card-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
  border-top-color: #c09e0d;
  cursor: pointer;
}
.border-bleu {
  border-color: #c09e0d !important;
}
.zone-link {
  color: #084165;
  text-decoration: none;
  font-weight: bold;
}
.zone-link:hover {
  text-decoration: underline;
}
.fond-container{
  padding: 80px 20px;
  background: #ffffff;
  justify-content: center;
  font-family: var(--baloo), sans-serif;
}
.object-fit-cover {
  object-fit: cover;
  object-position: center;
}

.text-or{
  color: #c09e0d;
}
#confirmation-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

#confirmation-section.visible {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
