/* 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 de présentation */
.presentation {
  margin-top: 150px;
  padding: 120px 2rem 2rem;
  background-color: white;
  text-align: justify;
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  font-family: 'inter';
  font-size: 18px;
}

.intro {
  flex: 1;
  min-width: 300px;
}

.presentation h1 {
  font-size: 1.8rem; /* Plus gros titre */
  margin-bottom: 30px;
  font-family: 'Syne', sans-serif; /* Garde Syne uniquement pour le titre si tu veux du contraste */
  color: #E75756;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.presentation p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.photos {
  flex: 1;
  display: flex;
  justify-content: center;
}

.photos img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}


/* Section des expériences */
.experience {
  padding: 2rem 2rem;
  color: #333;
  background: linear-gradient(90deg, rgba(231,87,86,0.6), rgba(253,239,119,0.1), rgba(231,87,86,0.6));
}

.experience h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Syne';
  color:rgba(253,239,119,0.9) ;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5)
}

.experience .experience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience .experience-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.experience .experience-item h3 {
  font-size: 1.6rem;
  color: rgba(231,87,86,0.7);
  font-family: 'lemonada';
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15)
}

.experience .experience-item p {
  font-family: 'Syne'; 
}

/* 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;
}
