/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: white;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white; /* Assure que le header reste au-dessus des autres éléments */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6 );
}

/* Header Container */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin: auto; /* Centre le conteneur */
  background: linear-gradient(90deg, #FFFFFF);
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Espace pour le futur logo (actuellement vide) */
.logo img {
  width: 300px; /* Ajuste cette valeur selon la taille de ton logo */
  height: auto;
  margin-left: 40px;
}

/* Centrer le menu */
.menu-center {
  flex-grow: 1;
  text-align: center;
  flex-direction: column;
}

.menu-center ul {
  list-style: none;
  display: inline-flex;
  margin: 0;
  padding: 0;
  margin-right: 100px;
}

.menu-center ul li {
  margin: 0 20px;
}

.menu-center ul li a {
  color: rgba(231,87,86,0.4);
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Syne';
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}


/* Animation de surlignement au survol */
.menu-center ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #FDEF77; /* Couleur du surlignement */
  transition: width 0.3s ease;
}

.menu-center ul li a:hover::after {
  width: 100%; /* Le surlignement prend toute la largeur de l'élément lors du survol */
}

/* Changement de couleur au survol */
.menu-center ul li a:hover {
  color: #FDEF77;
}

/* Bouton Prendre RDV */
.cta-btn {
  transform: translateY(20px) translateX(-50px);
  background-color: rgba(231,87,86,0.4);
  color: white;
  padding: 10px 40px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  margin-right: 10px;
  font-family: 'Syne';
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.cta-btn:hover {
  background-color: #FDEF77;
}


  /* Section Contact Form */
.contact-form {
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Pleine hauteur pour centrer le formulaire */
    padding: 2rem;
    background: linear-gradient(90deg, rgba(231,87,86,0.1), rgba(253,239,119,0.1), rgba(231,87,86,0.1)); /* Dégradé subtil */
  }
  
.contact-form form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
  }
  
.contact-form h2 {
    font-family: 'Syne', sans-serif;
    color: rgba(231,87,86,0.8);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  }
  
.contact-form .form-group {
    margin-bottom: 1.5rem;
  }
  
.contact-form label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(231,87,86,0.4);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FDEF77;
    box-shadow: 0 0 8px rgba(253,239,119,0.5);
  }
  
.contact-form textarea {
    resize: none;
  }
  
.contact-form button {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(231,87,86,0.8);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
.contact-form button:hover {
    background-color: #FDEF77;
    transform: translateY(-2px);
  }
  
.contact-form button:active {
    transform: translateY(0);
  }

/* Form row to align Prénom and Nom side by side */
.form-row {
    display: flex;
    gap: 1rem; /* Espace entre les champs */
    margin-bottom: 1.5rem; /* Espacement sous la ligne */
  }
  
  /* Half-width for Prénom and Nom fields */
.form-group.half-width {
    flex: 1; /* Chaque champ prend la moitié de la largeur disponible */
  }
  
  /* Assure que les champs restent bien alignés */
.form-group.half-width input {
    width: 100%;
  }

  /* Footer */
footer {
  background-color: white;
  color: white;
  padding: 20px 10px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
  min-height: 100px; /* Hauteur de base souhaitée */
  overflow: hidden; /* Cache tout débordement */
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo à gauche */
.footer-left .footer-logo {
  height: 150px;
  object-fit: contain;
  margin-top: -20px;
}

/* Réseaux au centre */
.footer-center .footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-socials a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Infos à droite */
.footer-right {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #000;
  margin-top: -20px;
}

.footer-right p {
  margin: 2px 0;
}
