/* =========================================================
   1. VARIABLES & BASE
========================================================= */

:root {
  /* Couleurs principales */
  --dark: #353535;
  --deep-blue: #284D63;
  --teal: #3C6F71;
  --light-gray: #D9D9D9;
  --white: #FFFFFF;

  /* Dégradés / backgrounds */
  --bg-gradient-hero-from: #ffffff;
  --bg-gradient-hero-mid: #f5f9fa;
  --bg-gradient-hero-to: #eaf1f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--dark);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: var(--deep-blue);
  margin-top: 0;
}

p {
  color: var(--dark);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--deep-blue); }

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

/* Sections globales */
.section {
  padding: 90px 0;
  position: relative;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--deep-blue);
  text-align: center;
  margin-bottom: 2rem;
}
.section-title span {
  color: var(--teal);
}

.section-subtitle {
  font-size: 1.15rem;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 2rem;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 1.9rem; }
}

/* =========================================================
   2. LAYOUT (NAVBAR / FOOTER / BACKGROUNDS)
========================================================= */

/* Navbar */
.header-fixed {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar {
  padding: 0.8rem 0;
  background: transparent;
  border-bottom: 1px solid var(--light-gray);
}

.navbar-brand {
  color: var(--deep-blue);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.navbar-toggler {
  background-color: var(--teal);
  border-radius: 8px;
  padding: 6px 8px;
  border: none;
}
.navbar-toggler-icon { filter: invert(1); }

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--teal) !important; }

.navbar-logo {
  height: 80px;
  width: auto;
}

/* Footer */
.footer {
  background: radial-gradient(circle at top center, #10181C 0%, #0B1114 100%);
  color: #f5f5f5;
  padding: 70px 0 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-decoration: none;
  transition: all .3s ease;
}
.footer-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

.footer-copy {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 15px;
  line-height: 1.5;
}

/* Backgrounds */
.bg-dark-section {
  background: radial-gradient(circle at top left, var(--deep-blue) 0%, #0e171b 100%);
  color: var(--white);
}
.bg-gradient-light {
  background: linear-gradient(160deg, var(--bg-gradient-hero-from), var(--bg-gradient-hero-mid), var(--bg-gradient-hero-to));
}

/* =========================================================
   3. COMPOSANTS GÉNÉRIQUES
   - Boutons
   - Cartes
   - Inputs / Formulaires
   - Modale
   - Accordéon
   - Carrousel logos (trusted-section)
   - Listes
   - Toggle ON/OFF
========================================================= */

/* Boutons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid rgba(60,111,113,0.4);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--deep-blue);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--deep-blue);
  border-color: var(--deep-blue);
}
.btn-outline:hover {
  background: var(--deep-blue);
  color: var(--white);
}
.btn-light {
  background: var(--light-gray);
  color: var(--deep-blue);
}
.btn-light:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-success {
  background: #2ecc71;
  color: var(--white);
}
.btn-success:hover {
  background: #27ae60;
}

.btn-danger {
  background: #e74c3c;
  color: var(--white);
}
.btn-danger:hover {
  background: #c0392b;
}


/* Cartes */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Input / Formulaire */
.input, .form-control {
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  padding: 10px 14px;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.input:focus, .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(60,111,113,0.15);
  outline: none;
}

/* ============================
   🪟 MODALE — STYLE GÉNÉRIQUE
   ============================ */
.vibora-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 3000;

  /* état fermé */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.vibora-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.vibora-modal {
  position: relative;
  z-index: 3100; /* au-dessus de l'overlay */
  background: #fff;
  padding: 2rem 1.5rem 1.5rem;
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: block; /* 👈 évite le display:none de Bootstrap */
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--teal);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--deep-blue);
}



/* Accordéon */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all .3s ease;
}
.accordion-item:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.accordion-button {
  background: transparent;
  color: var(--deep-blue);
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.accordion-button.active {
  background: rgba(60,111,113,0.1);
}
.accordion-body {
  background: #fff;
  color: var(--dark);
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

ol li,
ul li {
  margin-bottom: 0.5rem; /* ou 0.75rem si tu veux plus d’air */
  line-height: 1.6;
}


/* =========================================================
   Carrousel logos (trusted-section)
========================================================= */

/* Fond léger texturé + espace confortable autour */
.trusted-section {
  background-color: #f8fafa;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.trusted-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trusted-title span { color: var(--teal); }

/* Wrapper avec masques (fondu) sur les côtés */
.trusted-logos-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.trusted-logos-wrapper::before,
.trusted-logos-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.trusted-logos-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafa 30%, transparent 100%);
}
.trusted-logos-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafa 30%, transparent 100%);
}

/* Animation + piste des logos — version douce */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  width: max-content;
  animation: scroll 60s linear infinite;
  will-change: transform;
}

/* Logos */
.logo-track img {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.92);
  opacity: 0.9;
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}
.logo-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

/* --- SWITCH ON / OFF --- */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--teal);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch:has(input:focus) .toggle-slider {
  box-shadow: 0 0 0 3px rgba(60,111,113,0.25);
}




/* =========================================================
   4. SECTIONS SPÉCIFIQUES
   - Hero
   - Pourquoi
   - Comment ça marche
   - FAQ
   - Profil
   - List
   - Images activités
   - Avantages
========================================================= */

/* HERO — Effet carte NFC flottante */
.hero-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: heroFloat 4s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-image:hover {
  transform: rotateY(8deg) rotateX(8deg) scale(1.05);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.25));
}

/* SECTION — Pourquoi */
.why-section {
  background: #fff;
}

.why-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-blue);
}
.why-title span {
  color: var(--teal);
}

.why-lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.why-signature {
  font-style: italic;
  font-weight: 500;
  color: var(--deep-blue);
  margin-top: 1.5rem;
}

/* Effet flottant sur l’image */
.why-image {
  max-width: 420px;
  width: 100%;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: whyFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
}

@keyframes whyFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.why-image:hover {
  transform: rotateY(6deg) rotateX(6deg) scale(1.05);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.25));
}

/* Glow NFC derrière la carte */
.nfc-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(60,111,113,0.4) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}


/* SECTION — Comment ça marche */
.how-section {
  background: #f8fafa;
}

.how-title span {
  color: var(--teal);
}

.how-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.how-number {
  width: 64px;
  height: 64px;
  background: var(--teal);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.4s ease, background 0.4s ease;
}

.how-card:hover .how-number {
  transform: scale(1.15) rotate(8deg);
  background: var(--deep-blue);
}

/* Section FAQ */
.faq-section {
  padding: 120px 0;
  background: var(--white);
}

/* Titre FAQ */
.faq-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-blue);
}

/* Effet hover sur les blocs */
.accordion-item:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Supprime le contour bleu Bootstrap */
.accordion-button:focus {
  box-shadow: none;
}


/* =========================================================
   SECTIONS AVEC IMAGE (ex: Padel, Running, Trail...)
========================================================= */

.section-with-image {
  position: relative;
  border-radius: 14px;
  border: 1px solid #eee;
  background: transparent; /* pas de fond blanc derrière la photo */
  overflow: visible;
  margin-bottom: 2rem;
}

/* Image collée au-dessus du cadre */
.section-image-wrapper {
  position: relative;
  width: calc(100% + 2px);
  height: 180px;
  margin: -1px 0 0 -1px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
  z-index: 2;
}

/* Image sans halo */
.section-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) saturate(1.1);
  transition: transform 0.6s ease;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: bottom;
}
.section-banner:hover {
  transform: scale(1.05);
}

/* Bande foncée + titre */
.section-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #fff;
}
.section-title-image {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

/* Contenu texte du cadre */
.section-content {
  background: #fff;
  border-radius: 0 0 14px 14px;
  padding: 1.25rem;
  margin-top: 0; /* pas d’espace entre image et texte */
}

.section-content .info-list li {
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}
.section-content .info-list li:last-child {
  border-bottom: none;
}

.section-content h3 {
  padding: 0 1.25rem;
  color: var(--deep-blue);
  margin-top: 0.75rem;
}

.section-content .row {
  padding: 0 1.25rem 1.5rem;
}

/* =========================================================
   5. FORMULAIRES
========================================================= */

/* Logo sur les pages de connexion / inscription */
.form-logo {
  max-width: 120px;
  margin: 0 auto 1rem;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.7;
  line-height: 1;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password:hover {
  opacity: 1;
}

/* --- Ajustements formulaire pour page membre --- */
.form-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.form-label {
  font-weight: 500;
  color: var(--deep-blue);
}

.form-group {
  margin-bottom: 1rem;
}

/* =========================================================
   SECTION AVANTAGES (1/3 IMAGE - 2/3 CONTENU)
========================================================= */

.offers-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: all 0.3s ease;
}

.offer-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Image à gauche */
.offer-left {
  flex: 1 1 33%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid #eee;
}

.offer-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.offer-img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Contenu à droite */
.offer-right {
  flex: 1 1 67%;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-right h3 {
  color: var(--deep-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.offer-right p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.offer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.promo-code {
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
}



/* =========================================================
   6. UTILITAIRES
========================================================= */

/* Marges */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Couleurs texte */
.text-teal { color: var(--teal); }
.text-blue { color: var(--deep-blue); }
.text-dark { color: var(--dark); }
.text-white { color: var(--white); }

/* Backgrounds */
.bg-teal { background-color: var(--teal); }
.bg-blue { background-color: var(--deep-blue); }
.bg-light { background-color: var(--light-gray); }

/* Divers */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rounded { border-radius: 18px; }
.shadow-lg { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.text-center { text-align: center; }




/* =========================================================
   7. RESPONSIVE
========================================================= */

/* 📱 Breakpoint moyen — tablettes */
@media (max-width: 992px) {
  /* Typo globale */
  h1, h2 { font-size: 1.9rem; }
  p { font-size: 0.95rem; }

  /* Boutons */
  .btn { padding: 10px 20px; font-size: 0.9rem; }

  /* Logos */
  .logo-track {
    gap: 40px;
    animation-duration: 75s;
  }
  .logo-track img { height: 70px; }
  .trusted-logos-wrapper::before,
  .trusted-logos-wrapper::after { width: 60px; }
}

/* 📱 Breakpoint petit — mobile */
@media (max-width: 576px) {
  h1, h2 { font-size: 1.6rem; }

  .logo-track {
    gap: 30px;
    animation-duration: 90s;
  }
  .logo-track img { height: 52px; }
  .trusted-logos-wrapper::before,
  .trusted-logos-wrapper::after { width: 48px; }

  /* Hero */
  .hero-image {
    max-width: 90%;
    animation: none;
    transform: none;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.15));
  }
}

/* 🧑‍🦽 Accessibilité : stop animation si préférence utilisateur */
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 576px) {
  /* Pourquoi */
  .why-section {
    padding: 80px 0;
  }
  .why-image {
    animation: none;
    transform: none;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.15));
  }

  /* Comment ça marche */
  .how-card {
    padding: 1.5rem;
  }
  .how-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

/* Mobile: réduit l'espace vertical */
@media (max-width: 576px) {
  .faq-section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .card {
    padding: 1rem;
  }
}

/* --- Image et bord de carte --- */
@media (max-width: 768px) {
  .section-image-wrapper {
    height: 150px;
    width: calc(100% + 2px);
    margin: -1px 0 0 -1px;
  }
  .section-title-image {
    font-size: 1.2rem;
  }
  .section-content {
    padding: 1rem;
  }
}


/* ✅ Check box sur mobile : un peu plus grosses */
@media (max-width: 576px) {
  .availability-table input[type="checkbox"] {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .availability-table input[type="checkbox"]:checked::after {
    font-size: 1.25rem;
  }
}


/* --- Page avantage --- */
/* Responsive */
@media (max-width: 768px) {
  .offer-row {
    flex-direction: column;
  }

  .offer-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .offer-right {
    padding: 1.5rem;
    text-align: center;
  }

  .offer-meta {
    justify-content: center;
  }
}

/* =========================================================
   8. PAGE PROFIL (carte.php / membre.php)
========================================================= */

/* --- HEADER PROFIL --- */
.profile-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.profile-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.profile-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.75rem;
}

.profile-header .btn {
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
}

/* --- TITRES SECTIONS --- */
.info-block h2,
.padel-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  text-align: left;
}

/* --- LOGO ENTREPRISE --- */
.company-logo {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

/* --- LISTES D’INFOS --- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.info-list li strong {
  color: var(--deep-blue);
  font-weight: 600;
}

.info-list li span {
  text-align: right;
  max-width: 65%;
  word-break: break-word;
}

.info-list li span a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.info-list li span a:hover {
  color: var(--deep-blue);
  text-decoration: underline;
}

/* --- PADEL --- */
.padel-section {
  margin-top: 2rem;
}

.padel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.padel-grid li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 0.5rem 0;
}

/* --- DISPONIBILITÉS --- */
.availability-table input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--teal);
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  vertical-align: middle;
}

.availability-table input[type="checkbox"]:hover {
  border-color: var(--deep-blue);
  transform: scale(1.07);
}

.availability-table input[type="checkbox"]:checked {
  background-color: var(--teal);
  border-color: var(--teal);
}

.availability-table input[type="checkbox"]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  font-weight: 700;
}

/* --- FOOTER --- */
.vibora-footer {
  padding-top: 2rem;
  text-align: center;
}

.vibora-logo {
  max-width: 120px;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* --- PAGE MEMBRE --- */
.member-page {
  background: #f9f9f9;
  padding: 2rem 1rem;
}



