* {
    margin: 0;
  }

  html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




  body {
    font-family: 'Manrope', sans-serif;
    font-size: 1em;
    background-color: #ffffff;
  }
  
  a {
    color: #242424;
    text-decoration: none;
  }

  h1 {
    font-size: 3.5em;
    color: #242424;
    font-family: 'Montserrat', sans-serif;
  }

@media screen and (max-width: 768px) {
  main {
    padding-top: 80px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1650px) {
  .main-offset {
    padding-top: 110px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1650px) {
  main {
    padding-top: 100px;
  }
}

nav a {
  white-space: nowrap;
  min-width: max-content;
}

@media screen and (min-width: 1024px) and (max-width: 1650px) {
  header {
    height: 90px;
    padding: 0 20px;
  }

  .logo-link img {
    height: 60px;
  }

  nav a {
    font-size: 0.9em;
    padding: 8px 12px;
  }

  .cta {
    padding: 8px 14px;
    font-size: 0.95em;
  }
}

.main-offset {
  padding-top: clamp(65px, 10vw, 150px);
}

.C0 h1{
display: flex;
justify-content: center;
color: #FFCC00;
}
  

.C0{
  position: relative;
  width: 100%; 
}

.C011{
  color: #000000;
}

.titre-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10%;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #FFCC00;
  font-size: clamp(1.8rem, 5vw, 3.5rem); /* Responsive font-size */
  flex-wrap: wrap;
  text-align: center;
  
}

.highlight-contact {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.highlight-contact img {
  position: absolute;
  top: 65%;
  left: 55%;
  width: 3.5em; /* Suivant la taille du mot */
  transform: translate(-50%, -50%);
  z-index: -1;
}

.black-word {
  color: black;
  position: relative;
  z-index: 1;
}

.C01 {
  position: absolute;
  top: 55%;
  left: 57.1%;
  z-index: -10;
}

.C01 img{
  width: 9vw;
  height: auto;
}

.C1{
       max-width: 800px;
      margin: 0 auto;
      padding: 60px 20px 40px 20px;
    
}

   form {
      display: grid;
      gap: 20px;
    }

.C1 h3{
  font-size: 1em;
  

}

.C2 h3{
  font-size: 0.7em;
  padding-left: 25%;
  padding-right: 25%;
  padding-top: 1%;
  padding-bottom: 1%;
  text-align: justify;
}

.C2 img{
  display:flex;
  position: relative;
  width: 20vh;
  height: auto;
  padding-left: 60%;
  padding-bottom: 2%;

}



.situer{
  display: flex;
  flex-direction: row;
  background-color: #242424;
  height: 10vh;
  padding-top: 1%;
  padding-bottom: 1%;
}

.situer h1{
  display: flex;
  color: #FFCC00;
  font-size: 2em;
  font-weight:lighter;
  align-items: center;
  padding-left: 2%;
}

.situer img{
  width: auto;
  height: auto;
  padding-left: 15%;
}




.map {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2%;
  padding-bottom: 2%;
  width: 80vw;         
  max-width: 1600px;   
  min-width: 300px;    
  margin: auto;
  box-sizing: border-box;
}

.map iframe,
.map img {
  width: 100%;
  aspect-ratio: 16/9;  
  max-height: 60vh;
  min-height: 200px;
  border: 0;
  display: block;
}



.formulaire{
  color: #FFCC00;
}



form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  height: 50px; /* Augmentez la hauteur selon vos besoins */
  padding: 10px; /* Ajoutez un peu de padding pour un meilleur rendu */
  font-size: 16px; /* Ajustez la taille de la police si nécessaire */
  box-sizing: border-box; /* Assurez-vous que le padding n'affecte pas la taille totale */
}

form textarea {
  height: 150px; /* Ajustez la hauteur spécifique pour les zones de texte */
}


input[type="submit"] {
  background: linear-gradient(#FFCC00, #ffd53c);
  color: black;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  
}

input[type="submit"]:hover {
 background: linear-gradient(#fddf70, #fde795);
}


/*Header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  height: 150px;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 100;
  object-fit: contain;
  display: flex;
  align-items: center;
}

header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 55%;
  width: 45%;
  height: 1px;
  background-color: #FFCC00;
}

.cta {
  background: linear-gradient(#FFCC00, #ffd53c);
  color: rgb(0, 0, 0);
  border-radius: 30px;
  padding: 10px 20px;

  transition: background 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

.logo-link img {
  height: 100px;
  width: auto;
  max-height: 100%;
  display: block;
}

.cta:hover {
  background: linear-gradient(#fddf70, #fde795);
  text-decoration: none;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

nav > div {
  display: flex;
  align-items: center;
  gap: 20px;
}


nav a {
  font-size: 1em;
  color: #242424;
  text-decoration: none;
  padding: 10px 15px;
  white-space: nowrap;
}


header img {
  width: 12%;
  height: 12%;
}

/* Responsive Header */
@media screen and (max-width: 1024px) {
  nav a:not([href="index.html"]):not(.cta) {
    display: none;
  }

  .cta {
    padding: 8px 16px;
 
  }

  nav a[href="index.html"] {

    padding: 8px 14px;
  }

  .logo-link img {
    height: 45px;
  }

  header {
    height: 65px;
  }
}

@media screen and (max-width: 768px) {
  .cta {

    padding: 6px 12px;
  }

  nav a[href="index.html"] {

    padding: 6px 12px;
  }

  .logo-link img {
    height: 40px;
  }

  header {
    height: 60px;
  }
}
/*Footer*/
footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 55%;
  width: 45%;
  height: 1px;
  background-color: #FFCC00;
}

footer {
  background-color: white;
  padding: 1% 4%;
  position: sticky;  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

footer .B1 {
  width: 8%;
  height: 8%;
  padding-right: 6%;
}

.infooter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.infooter2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.B2 {
  width: 20%;
  height: auto;
}



.infooter h3 {
  color: #FFCC00;
  font-size: 1em;
  font-weight: normal;
}

.infooter h2 {
  font-weight: lighter;
  font-size: 0.9em;
}

.formulaire {
  color: #FFCC00;
}

.menfooter {
  display: flex;
  flex-direction: column;
  padding-left: 3%;
}

.lien-icone:hover {
  opacity: 0.5;
}

/* Responsive Footer - Au zoom, tout se met à la ligne */
@media screen and (max-width: 1024px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
  }
  
  footer::before {
    right: 40%;
    width: 60%;
  }
  
  .infooter {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }
  
  .infooter2 {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }
  
  footer .B1 {
    width: 60px;
    height: auto;
    padding-right: 0;
    margin-bottom: 10px;
  }
  
  .txtfoot {
    text-align: left;
    margin-bottom: 15px;
  }
  
  .menfooter {
    padding-left: 0;
    margin-top: 10px;
  }
  
  .lien-icone {
    margin-top: 15px;
    align-self: center;
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding: 15px 20px;
  }
  
  .infooter h3 {
    font-size: 0.9em;
  }
  
  .infooter h2 {
    font-size: 0.8em;
  }
  
  .formulaire {
    font-size: 0.8em;
  }
  
  
  .menfooter a {
    font-size: 0.8em;
  }
}

