/* Variables CSS pour une gestion facile des couleurs et polices */
:root {
  /* Couleurs principales : Jaune or, Or Clair, Noir, Blanc */
  --primary-color: #c69847; /* Jaune or pour l'action et les éléments mis en avant */
  --secondary-color: #e0c28f; /* Or clair pour les accents et icônes */
  --dark-color: #000000; /* Noir pour les arrière-plans, le texte et les bordures */
  --light-color: #ffffff; /* Blanc pour les fonds de section clairs et le texte sur fond sombre */
  --accent-color: #c69847; /* Le jaune or est aussi notre accent */

  /* Couleurs des bordures et ombres si nécessaires */
  --border-color: #c69847;
  --shadow-color: rgba(198, 152, 71, 0.4);

  /* Typographie */
  --font-heading: "Amiri", serif;
  --font-body: "Poppins", sans-serif;

  --section-padding: 100px;
  --container-padding-x: 25px;

  /* RGB pour les ombres */
  --primary-color-rgb: 198, 152, 71;
  --secondary-color-rgb: 224, 194, 143;
}

/* --- RÉINITIALISATION DE BASE ET STYLES GÉNÉRAUX --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--dark-color);
  background-color: var(--light-color);
  scroll-behavior: smooth;
  padding-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Conteneur pour centrer et limiter la largeur du contenu */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
}

/* Styles pour les titres */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

h1,
h2 {
  letter-spacing: 1px;
}

h1 {
  font-size: 3.2em;
  margin-bottom: 0.6em;
}
h2 {
  font-size: 2.5em;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.8em;
  margin-bottom: 0.8em;
}

/* Liens génériques */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Paragraphes */
p {
  margin-bottom: 1.2em;
  color: var(--dark-color);
}

/* Listes */
ul {
  list-style: none;
  margin-bottom: 1.5em;
}

ul li {
  margin-bottom: 0.8em;
}

/* Utilitaires de Texte et Espacement */
.text-center {
  text-align: center;
}

.intro-text {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 70px;
  line-height: 1.8;
  color: var(--dark-color);
  text-align: center;
}

/* Espacement des sections */
.section-padding {
  padding: var(--section-padding) 0;
}

/* Couleurs de fond de section */
.bg-light {
  background-color: var(--light-color);
}

.bg-dark {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* Titres sur fond sombre */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
  color: var(--light-color);
}

/* --- BOUTONS --- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease,
    border-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 1em;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--primary-color);
  border-color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.9em;
}

/* --- EN-TÊTE PRINCIPAL --- */
.main-header {
  background-color: var(--dark-color); /* Fond noir */
  color: var(--light-color); /* Couleur blanche pour le texte par défaut */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 60px;
  display: block;
}

/* Navigation principale (Bureau) */
.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.main-nav ul li a {
  color: var(--light-color); /* Liens de navigation en blanc */
  text-decoration: none;
  padding: 10px 18px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 100%;
}

.main-nav ul li a:hover {
  color: var(--primary-color); /* Au survol, les liens deviennent jaune or */
  background-color: rgba(255, 255, 255, 0.1); /* Un fond blanc très subtil */
}

/* Bouton de basculement de la navigation (mobile) */
.nav-toggle {
  display: none; /* Caché sur le bureau */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100; /* Doit être au-dessus du menu */
  position: relative;
  width: 25px;
  height: 21px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--light-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  left: 0;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 8px;
}
.nav-toggle span:nth-child(3) {
  top: 16px;
}

/* Animation du bouton vers "X" */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- SECTION HÉRO --- */
.hero-section,
.page-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  overflow: hidden;
  padding: 20px;
}

.page-hero-section {
  height: 60vh;
}

.hero-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.hero-content h1 {
  font-size: 4em;
  margin-bottom: 0.6em;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  color: var(--light-color);
}

.hero-content .tagline {
  font-size: 1.5em;
  margin-bottom: 2.5em;
  opacity: 0.9;
  color: var(--light-color);
}

/* --- SECTION À PROPOS --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 0.8em;
  color: var(--primary-color);
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: var(--dark-color);
}

.about-img-container {
  width: 100%;
  height: 75vh;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 100px;
  overflow: hidden; /* This is crucial for cropping */
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

/* --- SECTIONS D'OFFRES/CARACTÉRISTIQUES --- */
.offering-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.offering-item,
.feature-item {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offering-item:hover,
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Styles pour les icônes dans les offres/caractéristiques */
.offering-item i,
.feature-item i {
  font-size: 3.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.offering-item h3,
.feature-item h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.offering-item p,
.feature-item p {
  font-size: 1em;
  color: var(--dark-color);
  line-height: 1.7;
}

/* --- SECTION ABONNEMENTS PERSONNALISÉS --- */
.memberships-section p {
  margin-bottom: 50px;
}

.membership-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.membership-card {
  background-color: var(--light-color);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid var(--light-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.membership-card h3 {
  font-size: 1.6em;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.2;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.membership-card .price {
  font-family: var(--font-heading);
  font-size: 3em;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.membership-card .details {
  font-size: 0.95em;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.membership-card .description {
  font-size: 0.95em;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.membership-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  color: var(--dark-color);
  font-size: 0.95em;
  flex-grow: 1;
}

.membership-card .features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.membership-card .features li::before {
  content: "✔";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.membership-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Style pour les abonnements mis en avant (featured-membership) - Bordure dorée, Fond Blanc */
.membership-card.featured-membership {
  background-color: var(--light-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 15px var(--shadow-color);
  transform: scale(1.03);
}

.membership-card.featured-membership h3,
.membership-card.featured-membership .price,
.membership-card.featured-membership .description,
.membership-card.featured-membership .details,
.membership-card.featured-membership .features li {
  color: var(--dark-color);
}

.membership-card.featured-membership .features li::before {
  color: var(--secondary-color);
}

.membership-card.featured-membership:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px var(--shadow-color);
  transform: translateY(-10px) scale(1.05);
}

.membership-card.featured-membership .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}

.membership-card.featured-membership .btn-primary:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--primary-color);
}

/* --- STYLES POUR LA SÉPARATION DES ABONNEMENTS (dans abonnements.html) --- */
.section-subtitle {
  font-size: 2em;
  margin-top: 80px;
  margin-bottom: 25px;
  color: var(--dark-color);
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 5px;
}

.section-description {
  font-size: 1.05em;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.memberships-separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 100px auto;
  width: 50%;
  max-width: 300px;
}

/* --- SECTION HORAIRES & EMPLACEMENT --- */
.location-grid {
  margin-top: 50px;
}

.hours-info h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Styles pour les nouvelles cartes d'accès */
.access-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.access-card {
  background-color: var(--light-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.access-card i {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.access-card h4 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.access-card p {
  font-size: 1em;
  color: var(--dark-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.access-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  width: 100%;
}

.access-card ul li {
  font-size: 1.05em;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.access-card ul li span {
  font-weight: bold;
  color: var(--primary-color);
}

.member-access {
  border-color: var(--secondary-color);
}

.member-access:hover {
  box-shadow: 0 6px 18px rgba(var(--secondary-color-rgb, 158, 185, 144), 0.5);
  transform: translateY(-3px);
}

.staff-access {
  border-color: #ddd;
}

.staff-access:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.general-contact-info {
  margin-top: 80px;
  padding-top: 40px;
}

.general-contact-info h3 {
  color: var(--dark-color);
  margin-bottom: 20px;
}

.general-contact-info address,
.general-contact-info p {
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--dark-color);
}

.general-contact-info a {
  font-weight: bold;
}

/* Google Maps iframe */
.map-container {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-link-text {
  text-align: center;
  padding: 15px;
  font-size: 0.95em;
}

.map-link-text a {
  color: var(--primary-color);
  font-weight: bold;
}

/* --- SECTION CONTACT --- */
.contact-section form {
  max-width: 650px;
  margin: 50px auto 0;
  background-color: var(--light-color);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  background-color: var(--light-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 198, 152, 71), 0.25);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.privacy-note {
  font-size: 0.9em;
  color: #777;
  margin-top: 30px;
}

/* Champ honeypot pour Netlify Forms (anti-spam) */
.hidden {
  display: none;
}

/* --- PIED DE PAGE --- */
.main-footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.footer-col:first-child,
.footer-col:last-child {
  text-align: left;
}

.footer-col h3 {
  color: var(--light-color);
  margin-bottom: 25px;
  font-family: var(--font-heading);
  font-size: 1.3em;
}

.footer-col p,
.footer-col address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95em;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
}

.social-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-col:first-child .social-links {
  justify-content: flex-start;
}

.social-links a i {
  font-size: 1.8em;
  color: var(--light-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a i:hover {
  transform: scale(1.1);
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  margin-top: 50px;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
}

/* --- STYLES SPÉCIFIQUES À NOTRE ÉQUIPE --- */
.team-members-section h2 {
  margin-bottom: 1.5em;
  text-align: center;
  color: var(--primary-color);
}

.member-grid {
  display: flex;
  justify-content: space-evenly;
  gap: 80px; /* Increased gap for more space */
  margin-top: 40px;
  flex-wrap: wrap;
}

/* La carte du membre est correcte */
.team-member-card {
  background-color: var(--light-color);
  padding: 40px; /* More padding for a larger card */
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px; /* Increased max width */
  min-width: 340px; /* Increased min width */
  display: flex;
  flex: 1 1 380px; /* Increased base width */
  flex-direction: column;
  align-items: center;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 320px;
  height: 420px; /* Portrait ratio, adjust as needed */
  border-radius: 18px; /* Soft corners */
  overflow: hidden;
  border: 5px solid var(--primary-color);
  box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb, 198, 152, 71), 0.2);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-member-card h3 {
  color: var(--dark-color);
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.member-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1em;
  font-size: 1.05em;
}

.member-bio {
  font-size: 0.95em;
  color: var(--dark-color);
  line-height: 1.7;
}

/* --- RÉPONSIVITÉ (MEDIA QUERIES) --- */

@media (max-width: 992px) {
  h1 {
    font-size: 2.8em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.5em;
  }

  .section-padding {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3.5em;
  }
  .hero-content .tagline {
    font-size: 1.3em;
  }

  .intro-text {
    margin-bottom: 40px;
  }

  .offering-grid,
  .feature-grid,
  .membership-plans-grid,
  .access-cards,
  .location-grid {
    gap: 25px;
  }

  .contact-section form {
    padding: 40px;
  }

  .main-footer {
    padding: 60px 0 25px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .about-img-container {
    height: 600px; /* Or your preferred fixed height for mobile/tablet */
  }
}

@media (max-width: 768px) {
  .main-nav {
    /* Styles for the full-screen menu container */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;

    /* Hide the menu by default and prepare for animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .main-nav.active {
    /* Styles to show the menu */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    /* Center the links vertically */
    flex-direction: column;
    text-align: center;
    height: auto; /* Override desktop height */
  }

  .main-nav ul li {
    margin: 20px 0; /* Add space between links */
    width: auto;
    border-bottom: none;
    background-color: transparent;
  }

  .main-nav ul li a {
    /* Enlarge the link text for better readability */
    font-size: 1.8em;
    font-weight: 600;
    padding: 10px;
    color: var(--light-color);
  }

  .main-nav ul li a:hover {
    color: var(--primary-color);
    background-color: transparent;
  }

  .nav-toggle {
    display: block; /* Show the hamburger button on mobile */
  }

  /* --- Other Mobile Styles --- */
  .section-padding {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    padding: 0 15px;
  }
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.6em;
  }

  p,
  li,
  a {
    font-size: 0.95em;
  }

  .hero-content h1 {
    font-size: 2.8em;
  }
  .hero-content .tagline {
    font-size: 1.1em;
    margin-bottom: 2em;
  }

  .offering-item,
  .feature-item,
  .membership-card,
  .access-card {
    padding: 25px;
  }
  .offering-item i,
  .feature-item i {
    height: auto;
    font-size: 3em;
    margin-bottom: 15px;
  }
  .membership-card h3 {
    font-size: 1.4em;
    min-height: auto;
  }
  .membership-card .price {
    font-size: 2em;
  }

  .section-subtitle {
    font-size: 1.8em;
  }
  .section-description {
    margin-bottom: 25px;
  }
  .memberships-separator {
    margin: 60px auto;
  }
  .general-contact-info {
    margin-top: 50px;
    padding-top: 20px;
  }
  .contact-section form {
    padding: 30px;
    margin-top: 30px;
  }
  .footer-content {
    grid-template-columns: 1fr; /* This creates a single column */
    gap: 30px; /* Increased gap for better spacing */
    margin-bottom: 30px;
    text-align: center; /* Center align all content */
  }
  .footer-col {
    text-align: center !important;
  }
  .footer-col .social-links {
    justify-content: center;
  }
  .footer-col:first-child .social-links {
    justify-content: center;
  }
}

/* Animation pour la navigation mobile (Supprimé car les transitions gèrent l'effet) */
