/******************** section 1 ****************/
.hero {
    background: url("../images/contact/contact.jpg") no-repeat center center/cover;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    z-index: 3;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4;
  }
  
  .hero-content {
    position: relative;
    z-index: 8;
    padding: 20px;
  }
  
  .hero-content .small {
    font-size: 14px;
    font-weight: 500;
  }
  
  .hero-content h1 {
    font-size: 50px;
    font-weight: 600;
  }
  
  .hero-content p {
    font-size: 16px;
    margin:  20px 0; 
    line-height: 1.4;
  
    font-weight: 500;
    color: white;
  
    /* margin: 0 auto 30px; */
  }
  
  .hero-content p a {
    color: white;
    transition: 0.3s ease-in-out;
  }
  .hero-content p a:hover {
    color: #c77f05;
  }
  
  .underline {
    height: 5px;
    width: 214px;
    background: var(--clr-orange); /* Secondary color */
    margin: 10px auto 20px;
  }
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 34px;
    }
  
    .hero-content p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 600px) {
    .hero {
      height: 60vh;
    }
  
    .hero-content h1 {
      font-size: 26px;
    }
  
    .underline {
      width: 114px;
    }
  }

/******************** CONTACT *****************************/


.formulaire {
 
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  
}

.formulaire-title {
    font-size: 40px;
    background: var(--clr-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 20px;
  }
  
  .formulaire-subtitle {
    max-width: 1510px;
    margin: 0 auto 50px;
    padding-bottom: 30px;
  
    font-size: 18px;
    font-weight: 400;
  
    line-height: 1.6;
  
    text-align: center;
  }


.contact-section {
  padding: 40px 20px;
  background-color: #fff;
  font-family: var(--ff-tertiary);
}

.contact-container {
  display: grid;
  gap: 30px;
 grid-template-columns: repeat(3, 1fr);
  max-width: 1500px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}

.contact-infos, .contact-form {

  
  
  border-radius: 10px;
}

.contact-infos{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    /* background: #000; */
    padding: 0;
}

.contact-form {
  grid-column:  span 2;
  background-color: #f6f8fc;
  padding: 30px;
height: 100%;
}



.info-box {
   background-color: #f6f8fc;

  border-radius: 12px;
  padding: 40px;

  text-align: center;
  font-family: var(--ff-tertiary);
  width: 100%;
 
}
.iconss {
  font-size: 30px;
  padding-bottom: 25px;
  
}

.info-box h3 {
  font-family: var(--ff-tertiary);
  padding-bottom: 15px;
  line-height: 1.6;


}

.info-box p {
  text-transform: capitalize;
  line-height: 1.4;
}
p.emailss {
  text-transform: lowercase;
}
.contact-form .subtitle {
  color: #c77f05;
  margin: 0;
  font-weight: bold;
  text-align: center;
}

.contact-form .title {
  font-size: 36px;
  font-weight: 700;
font-family: var(--ff-tertiary);
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  
  outline: none;
font-family: var(--ff-tertiary);

}

.form-row.full textarea {
  width: 100%;
height: 200px;
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background : var(--clr-orange);
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
}


@media screen and (max-width: 1024px) {

   .contact-container {
    grid-template-columns: repeat(1, 1fr);

   }
  .formulaire-title {
    font-size: 32px;
  }

  .formulaire-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .formulaire-title {
    font-size: 26px;
  }

  form {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;

  }

.form-row.full textarea {
    height: 150px !important;
}

.contact-form .title {
    font-size: 28px;
    font-weight: 600;
}
}

