.burger-menu {
  display: none; /* ✅ caché par défaut sur PC */
}
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700&family=Raleway:wght@400;600&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #fff;
}

/* -------- TOP BAR -------- */
.top-bar {
  background-color: #3a3a3a;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.top-right-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.connexion-btn {
  background-color: transparent; /* Enlève le fond noir */
  border: 2px solid white; /* Petit contour blanc */
  color: white; /* Texte blanc */
  padding: 6px 14px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, border-bottom 0.2s ease;
}

/* Effet zoom au survol */
.connexion-btn:hover {
  transform: scale(1.2); /* Zoom léger */
  background-color: transparent; /* Reste sans fond */
}

/* Supprime les effets de fond au clic */
.connexion-btn:focus,
.connexion-btn:active {
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.mail-btn {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.mail-btn i {
  background-color: transparent;
  padding: 8px;
  border-radius: 50%;
}

.mail-btn:hover {
  transform: scale(1.4);
}

.left-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 5000;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  color: #fff;
}

/* -------- HEADER -------- */
header {
  background-color: #000;
  padding: 50px 40px;
  position: relative;
  overflow: visible;
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 130px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0,7px;   /* 👈 espace entre lettres */
  word-spacing: 4px;       /* 👈 espace entre mots */
}

.nav-links a {
  text-decoration: none;
  color: #FFD700;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #FFD700;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* LOGO DISSOCIÉ */
.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.logo {
  max-height: 150px; /* Ajuste ici pour changer la taille du logo sans toucher au header */
  height: auto;
  width: auto;
  object-fit: contain;
}



/* FOOTER */
footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-family: 'Raleway', sans-serif;
}

footer a {
  color: #FFD700;
  text-decoration: none;
}

footer .socials {
  margin-top: 10px;
}

footer .socials a {
  color: #FFD700;
  margin: 0 10px;
  font-size: 20px;
  transition: transform 0.3s;
}
footer .socials a:hover {
  transform: scale(1.2);
}

/* HEADER SHRINK STICKY */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

header.shrink {
  padding: 35px 50px;
}

header.shrink .logo {
  max-height: 100px;
}

/* TOP-BAR STICKY */
.top-bar {
  position: sticky;
  top: 0;
  background-color: #3a3a3a;
  z-index: 101;
}

/* HEADER STICKY EN DESSOUS DE LA TOP-BAR */
header {
  position: sticky;
  top: 40px;
  z-index: 100;
  transition: all 0.3s ease;
}

/* Animation douce du logo */
.logo {
  transition: all 0.3s ease;
}

/* Lorsque le header est réduit */
header.shrink .logo {
  max-height: 100px;
  margin-top: 20px;
}

/* Ajustement plus petit du logo quand le header est réduit */
header.shrink .logo {
  max-height: 87px; /* ajusté depuis 100px */
  margin-top: 20px;
}
/* Réduction de la taille du texte du menu quand le header shrink */
header.shrink .nav-links {
  font-size: 20px;  /* 👈 ajuste cette valeur comme tu veux */
}

/* FONDU HAUT DU HEADER */
.fade-header-top {
  width: 100%;
  height: 8px;
  background: linear-gradient(to bottom, #3a3a3a, transparent); /* adapte la couleur ici */
  z-index: 10;
  position: relative;
}
.fade-header-bottom {
  height: 12px;
  background: linear-gradient(to bottom, #000, #1f1f1f); /* noir vers gris */
}
.nav-links a.active {
  color: white;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: yellow;
  transition: width 0.3s ease;
}


/* -------- LE CLUB PAGE -------- */

.main-content {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  font-family: 'Raleway', sans-serif;
}

.main-content h1,
.main-content h2 {
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.main-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.map-section iframe {
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.club-details ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 25px;
  color: #ddd;
  font-size: 17px;
}

.btn-container {
  text-align: center;
}

.join-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffd700;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.join-btn:hover {
  background-color: #e6c200;
}
.connexion-btn {
  text-decoration: none !important;
}


/* ---- DESIGN SUPPLÉMENTAIRE POUR LE CLUB ---- */

.club-presentation {
  background-color: #1a1a1a;
  padding: 50px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  margin-bottom: 40px;
}

.club-presentation h1 {
  font-size: 36px;
  color: #FFD700;
  font-family: 'Barlow Condensed', sans-serif;
  text-align: center;
  margin-bottom: 25px;
}

.club-presentation p {
  font-size: 18px;
  line-height: 1.8;
  color: #eaeaea;
  text-align: justify;
  margin-bottom: 15px;
}

.club-details h2 {
  font-size: 24px;
  color: #FFD700;
  border-bottom: 1px solid #FFD700;
  padding-bottom: 6px;
  margin-top: 40px;
}

.club-details ul {
  padding-left: 20px;
}

.map-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.map-section p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}



/* === CLUB DETAILS STYLE PRO === */

.club-details {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  margin-top: 40px;
}

.club-details h2 {
  font-size: 24px;
  color: #FFD700;
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 15px;
  position: relative;
}

.club-details h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #FFD700;
  margin-top: 5px;
}

.club-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.club-details ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #eee;
  font-family: 'Raleway', sans-serif;
}

.club-details ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: #FFD700;
}


.club-image-section {
  background-color: #1a1a1a;
  padding: 50px 20px;
  text-align: center;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
}

.club-image-section h2 {
  color: #FFD700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.club-image-section .image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.club-image-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.club-image-section img:hover {
  transform: scale(1.02);
}


.souvenirs-promo {
  margin-top: 30px;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #ddd;
  animation: fadeInUp 0.8s ease both;
}

.souvenirs-promo p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.souvenirs-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.souvenirs-btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
}

/* Animation d'apparition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- Amélioration visuelle de la section Où nous trouver --- */

.map-section {
  background-color: #1a1a1a;
  padding: 90px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
  margin-top: 40px;
  text-align: center;
}

.map-section h2 {
  font-size: 24px;
  color: #FFD700;
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.map-section p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}


/* === VARIATION DES BLOCS ET ANIMATIONS === */

.club-presentation,
.club-image-section {
  animation: fadeInUp 0.8s ease both;
}

.club-presentation {
  padding: 60px 30px;
}

.map-section {
  padding: 40px 20px;
}

.club-image-section {
  padding: 70px 40px;
}

.club-details {
  padding: 50px 30px;
  margin-bottom: 60px;
}

.club-details ul li {
  animation: fadeInLeft 0.5s ease both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.club-details h2,
.club-presentation h1,
.map-section h2,
.club-image-section h2 {
  animation: fadeInDown 0.6s ease both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === STYLE POUR COMBLER LES CÔTÉS === */

.club-presentation,
.map-section,
.club-image-section,
.club-details {
  position: relative;
  box-shadow: 0 0 100px rgba(255, 215, 0, 0.04);
  overflow: hidden;
}

.club-presentation::before,
.map-section::before,
.club-image-section::before,
.club-details::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 6px;
  background: linear-gradient(to bottom, #FFD700, transparent, #FFD700);
  opacity: 0.4;
  border-radius: 3px;
  animation: pulseLine 3s infinite ease-in-out;
}
/* === STYLE DU BOUTON "Nous Rejoindre" ALIGNÉ AVEC .photo-btn === */

.join-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
  font-family: 'Raleway', sans-serif;
}

.join-btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
}

/* === STYLE BOUTON ITINÉRAIRE === */
.directions-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
  font-family: 'Raleway', sans-serif;
  margin-top: 20px;
}

.directions-btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
}


@keyframes pulseLine {
  0% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.05);
  }
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
}
body {
  background-color: #111;
  background-image: url('/images/topography.svg'); /* adapte si le fichier est ailleurs */
  background-repeat: repeat;
  background-size: 300px; /* ajuste à ta convenance */
}
/* === RESPONSIVE DESIGN POUR TOUS LES ÉCRANS SAUF 1920x1080 === */

/* ✅ PC portable : entre 1280px et 1399px */
@media screen and (min-width: 1280px) and (max-width: 1399px) {
  .logo {
    max-height: 150px;
  }

  .nav-links {
    font-size: 20px;
    gap: 45px;
  }

  header {
    padding: 50px 50px;
  }

  .logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
  }

  .nav-container {
    flex-direction: row;
  }

  .actu-card {
    width: 280px;
  }

  .actu-card img {
    width: 100%;
    height: auto;
  }

  .actus-container {
    gap: 149px !important;
  }
}
/* ✅ Breakpoint spécial 1400px à 1440px */
@media screen and (min-width: 1400px) and (max-width: 1440px) {
  .logo {
    max-height: 150px;
  }

  .nav-links {
    font-size: 20px;
    gap: 60px;
  }

  header {
    padding: 50px 50px;
  }

  .logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
  }

  .nav-container {
    flex-direction: row;
  }
}
/* ✅ Breakpoint spécial 1441px à 1919px */
@media screen and (min-width: 1441px) and (max-width: 1919px) {
  .logo {
    max-height: 160px;
  }

  .nav-links {
    font-size: 20px;
    gap: 90px;
  }

  header {
    padding: 50px 60px;
  }
}

/* Apparition au scroll */
.fade-up,
.fade-down {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-down {
  transform: translateY(-30px);
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}