/* 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 des Tarifs */
.tarifs {
  margin-top: 150px;
  padding: 120px 2rem 2rem;
  color: #333;
  text-align: center;
  position: relative; /* Pour positionner l'overlay par-dessus */
  overflow: hidden;
}

/* L'overlay qui affecte uniquement l'image de fond */
.tarifs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(231,87,86,0.6), rgba(253,239,119,0.1), rgba(231,87,86,0.6));
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

/* Titre principal */
.tarifs h4 {  /* Remplacez h4 par l'élément exact que tu utilises pour le titre */
  text-align: center; /* Centre le titre */
  margin-bottom: 2rem; /* Espacement sous le titre */
  font-family: 'Syne'; /* Police pour le titre */
  font-size: 3rem;
  color: #FDEF77;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 2; /* S'assure que le titre est au-dessus de l'overlay */
  position: relative; /* Position relative pour que le titre apparaisse par-dessus l'overlay */
}

/* Liste des tarifs */
.tarifs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colonnes fixes */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; /* Le contenu des tarifs reste au-dessus de l'overlay */
  z-index: 2;
}

/* Tarifs individuels */
.tarif-item {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Titres des tarifs */
.tarif-item h2 {
  font-size: 1.8rem;
  color: #E75756;
  margin-bottom: 10px;
  font-family: 'lemonada';
}

/* Prix */
.tarif-item .price {
  font-size: 2rem;
  font-weight: bold;
  color: #FDEF77;
  margin-bottom: 15px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 2);
}

/* Description des tarifs */
.tarif-item p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'inter';
}

/* Informations supplémentaires */
.additional-info {
  color: black;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
  z-index: 2;
  font-family: 'inter';
}

.additional-info p {
  font-size: 1.2rem;
  line-height: 1.5;
}


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