* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-black: #000000;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(
    135deg,
    #000 0%,
    #030712 50%,
    rgba(67, 32, 4, 0.1) 100%
  );
}
p,
.info-reseau,
.form-label,
.contact h1,
.hero-content h2,
.list-reseau,
.title-planning,
.p-planning {
  font-family: system-ui;
}
.list-reseau {
  color: #d1d5dc;
}
input.btn:hover {
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.description-info-reseau {
  color: #99a1af;
}

.club-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.club-container {
  width: 100%;
  max-width: 950px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 25, 0.95),
    rgba(10, 18, 40, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.section-title {
  color: #d4b46a;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.club-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.club-card {
  flex: 1;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.club-card strong {
  display: block;
  font-size: 14px;
}

.club-card span {
  font-size: 12px;
  opacity: 0.7;
}

/* Active gold card */
.club-card.active {
  background: linear-gradient(135deg, rgb(229, 206, 159), rgb(201, 169, 97));
  border: 1px solid transparent;
  color: #111;
}

/* Hours box */
.club-hours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(40, 40, 45, 0.8),
    rgba(60, 50, 35, 0.6)
  );
  border-left: 4px solid;
  border-image: linear-gradient(
      rgb(229, 206, 159),
      rgb(201, 169, 97),
      transparent
    )
    1;
  color: white;
}

.club-hours small {
  font-size: 12px;
  opacity: 0.7;
}

.club-hours p {
  margin: 4px 0 0;
  font-weight: 600;
}

.badge {
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}
.btn.gold {
  background: linear-gradient(135deg, rgb(229, 206, 159), rgb(201, 169, 97));
}
.btn.gold:hover {
  color: #212529;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: color-mix(in oklab, var(--color-black) 70%, transparent);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back {
  text-decoration: none;
  color: #cbb68d;
  font-weight: 500;
  font-size: 14px;
}

.logo {
  font-size: 28px;
  background: #ff6a4d;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px 20px 40px;
  color: white;
}

.hero-content {
  position: relative;
  max-width: 850px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
  font-size: 14px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  background-image: linear-gradient(
    135deg,
    rgb(240, 228, 200),
    rgb(229, 206, 159),
    rgb(201, 169, 97)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin: 25px 0;
  font-size: 18px;
  opacity: 0.9;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  min-width: 200px;
}

.btn.small {
  padding: 8px 18px;
  font-size: 14px;
  min-width: auto;
}

.orange {
  background: linear-gradient(90deg, #ff7a59, #ff5e3a);
  color: white;
  font-size: 14px;
}

.outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}

.btn:hover {
  transform: translateY(-3px);
}

/* ARROWS */

.arrow {
  width: 16px;
  height: 16px;
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  right: 0;
  top: 4px;
}

.arrow.down::after {
  transform: rotate(135deg);
  top: 2px;
}

/* BUTTON GROUP */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }
}

/* ================= INFO CARD ================= */

.info-section {
  padding: 0 20px 80px;

  position: relative;
  z-index: 5;
}

.info-card {
  max-width: 1100px;
  margin: auto;
  background: white;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  position: relative;
  top: -70px;
}
.club-container {
  position: relative;
  top: -70px;
}
/* LEFT SIDE */
.info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #ffe5df;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.label {
  font-size: 13px;
  color: #888;
}

.info-left h3 {
  font-size: 22px;
  margin: 5px 0;
}

.info-left p {
  color: #555;
}

/* RIGHT SIDE TAGS */
.info-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tag {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(240, 104, 78, 0.082);
  font-size: 14px;
  color: #f0684e;
}
.text-gold {
  background-image: linear-gradient(
    135deg,
    rgb(240, 228, 200),
    rgb(229, 206, 159),
    rgb(201, 169, 97)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section {
  background: linear-gradient(
    135deg,
    rgba(229, 206, 159, 0.12),
    rgba(201, 169, 97, 0.08)
  );
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 40px auto;
  color: white;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-icon {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

.hero-content h2 {
  font-size: 32px;
  font-weight: bold;
}

.hero-content p {
  margin-top: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.feature {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
}
.text-orange {
  color: #f0684e;
}
.btn-planifier-semaine {
  background: rgba(240, 104, 78, 0.082);
  color: #e5ce9f;
  padding: 10px 17px;
  font-size: 14px;
  border-radius: 22px;
  font-weight: 600;
}
.btn.btn-orange {
  background: linear-gradient(
    135deg,
    rgb(240, 104, 78),
    rgba(240, 104, 78, 0.867)
  );
  color: rgb(255, 255, 255);
  justify-content: center;
  padding: 16px 24px;
  border-radius: 15px;
}
.small-text-formulaire {
  color: #6a7282;
  font-size: 12px;
}
/* FOOTER */
footer {
  background: #101828;
  color: #6a7282;
  text-align: center;
  padding: 40px 20px;
}

footer span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}
.custom-hr {
  width: 110px; /* control width */
  height: 7px; /* thickness */
  background: linear-gradient(90deg, rgb(229, 206, 159), rgb(201, 169, 97));
  border: none;
  margin: 20px auto; /* THIS centers it */
  opacity: 1;
  border-radius: 10px;
}
.custom-hr-footer {
  width: 110px; /* control width */
  height: 1px; /* thickness */
  background-color: rgb(54 65 83);
  border: none;
  margin: 20px auto; /* THIS centers it */
  opacity: 1;
}

/* Start Animation */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
/* End Animation */

/* Mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 24px;
  }
  .feature {
    width: 100%;
    text-align: left;
  }
  .info-right {
    gap: 4px;
    margin-top: 0px;
  }
  .header-content {
    gap: 15px;
  }

  .hero {
    height: auto;
    padding: 140px 20px 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    min-width: 100%;
    justify-content: center;
  }
  .info-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 8px;
  }
  .info-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 8px;
  }
  .hero-section {
    margin: 0px 5px;
  }
  .btn.small {
    padding: 8px 7px;
  }
}
