/* STYLE GENERAL */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #F6E6D1;
  color: #333;
  padding: 0;
  box-sizing: border-box;
}
 h1, h2 {
  text-align: center;
  margin-bottom: 30px;
  color:#6D4A99;
}


/* HEADER */
/*header {
  background-color: #A7B77D;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}*/
header {
  width: 100%;
  background-color: #A7B77D; /* ou autre couleur de bandeau */
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

header img {
  height: auto;
  transition: transform 0.3s ease;
  max-width: 210px;
  
}

header img:hover {
  transform: scale(1.1);
}
 
header h1 {
  color: #6D4A99;
  margin: 0;
  font-size: 1.8em;
}

 .white-box {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 2rem 2.5rem;
      margin-bottom: 2rem;
}


 
 

/* MAIN */
main {
  /*padding: 40px 20px;*/
  text-align: center;
}

main h2, main h3 {
  color: #6D4A99;
}

/* FORMULAIRE DE CONTACT */

 /* FORMULAIRE DE CONTACT  partie gauche*/
form label {
  display: block;
  margin-top: 1rem;
  color: #000;
  /* font-weight: bold;*/
   color: #C9A980; /* couleur du texte */
}

 /* form group */
 
 .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.form-group label {
  width: 170px; /* largeur fixe pour tous les labels */

  color: #C9A980;
}

.form-group input,
.form-group textarea {
  flex: 1; /* prend tout l’espace restant */
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background-color: #A7B77D;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #C9A980;
}


label {
  display: block;
  margin-top: 1rem;
 /* font-weight: bold;*/
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"]  {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
input[type="checkbox"]  {
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
textarea   {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
.accept-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.accept-group input[type="checkbox"] {
 
  transform: translateY(1px); /* Ajuste si besoin selon la police */
}

.accept-group label {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.success {
  color: #A7B77D;
  font-weight: bold;
}

.error {
  color: red;
  font-weight: bold;
}
 /* FORMULAIRE DE CONTACT  partie droite */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* ⬅️ important : ne force plus l'alignement vertical commun */
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 450px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form h2 {
  color: #6D4A99;
}

.contact-side {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; /* ✅ espace entre les blocs */
}
.contact-side i {
  color: #C9A980;
}


.info-box {
  background: white;
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 300px;
  justify-content: center; /* centre horizontalement */
  gap: 20px; /* espace entre les icônes */
  align-items: center;
  color: #C9A980; /* couleur du texte */
}

 .social-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* espace entre les icônes */
  align-items: center;
}
.info-box h3 {
  color: #6D4A99;
  margin-bottom: 1rem;
}
/* photo page contact*/
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info {
  flex: 0 0 300px;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  /*align-self: flex-start;*/
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
   margin: 0 auto; /* centrage horizontal */
    width: 250px;   /* un peu moins que 300 */
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #6D4A99;
  text-align: center;
}

 .contact-info  {
  display: block;
  width: 150px;           /* largeur fixe */
  height: 150px;          /* hauteur fixe */
  border-radius: 50%;    /* cercle parfait */
  margin: 0 auto 1rem auto;
  object-fit: cover;     /* ajuste l’image sans déformation */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.contact-info i {
  color: #A7B77D;
  margin-right: 0.5rem;
}




/* instagram */
.instagram-link svg {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.instagram-link:hover svg {
  transform: scale(1.1);
  fill: #C9A980; /* ou une autre couleur */
}
/* instagram et calendly */
.external-links {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f6e6d1;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.external-links h3 {
  margin-bottom: 1rem;
  color: #6D4A99;
  font-size: 1.2rem;
}

.links-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link svg {
  transition: transform 0.3s ease, fill 0.3s ease;
  cursor: pointer;
}

.social-link:hover svg {
  transform: scale(1.15);
  fill: #C9A980;
}

.legal-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: justify;
  line-height: 1.6;
  color: #000;
  font-size: 1rem;
}
/* plan de site*/

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: justify;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.sitemap {
  list-style-type: none;
  padding: 0;
}

.sitemap li {
  margin: 0.5rem 0;
}

.sitemap a {
  color: #C9A980;
  text-decoration: none;
}

.sitemap a:hover {
  text-decoration: underline;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    flex-direction: column; 
    text-align: center;
  }

  nav {
    flex-direction: column;
  }

  header h1 {
    margin-top: 10px;
  }
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
	
  }
  .contact-side {
    flex-direction: column;
    align-items: center;
  }
  .contact-form, .info-box {
  /*  width: 100%;*/
    max-width: 450px;
  }
   .menu {
    flex-direction: row; /* force l'horizontal */
    overflow-x: auto; /* si besoin, scroll horizontal */
  }
}
 