:root{
  --primary: #e22020;
}

.primary-text{
  color: var(--primary);
}

#navbar {
  height: 100px;
  border-bottom: 1px solid #ededed;
}

.logo-header {
  width: 150px;
}

.main {
  background-image: url(aislamiento1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 790px;
  padding: 50px 0;
  margin: 0;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

@media (max-width: 768px) {
  .logo-header {
      max-height: 40px !important;
      width: auto !important;
  }
  
  nav {
      height: 70px !important;
      border-bottom: 2px solid #f9e1d3;
      font-weight: 500;
      font-size: 1rem;
  }

  .main{
    margin-top: 70px;
  }
}

.maintenance-box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.logo {
  max-width: 150px;
  margin-bottom: 25px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

h2 {
  font-weight: 700;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 6px 0;
}

/* formulaire */

.step-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  min-height: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
  overflow-x: auto; /* permet le scroll si l’écran est trop petit */
}

@media (max-width: 400px) {
  .step-indicator {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.circle.active {
  background-color: orange;
}

.line {
  flex: 1;
  height: 2px;
  background-color: #eee;
  margin: 0 5px;
}

.option-box {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.option-box:hover, .option-box.selected {
  /*border-color: orange;
  background-color: #fff9f2;*/
  border-color: #1bc085;
  background-color: #f2fff4;
}

.d-none { display: none; }

.bg-success{
  background-color: #18c085 !important;
}

/* end formulaire */