:root {
  --rouge-principal: #5B0F15;
  --beige-fond: #e8e4d0;
  --beige-clair: #f2efe0;
  --vert-olive: #57622C;
  --vert-olive-clair: #724E1C;
  --noir-texte: #1A1A1A;
  --blanc: #ffffff;
  --gris-texte: #666666;
  --gris-fond: #f5f5f0;

  --police-titre: 'Oswald', sans-serif;
  --police-corps: 'Open Sans', sans-serif;

  --ombre-boite: 0 4px 20px rgba(0,0,0,0.12);
  --bordure-arrondie: 10px;

  --transition-rapide: 0.25s ease;
}

/* RESET */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--police-corps);
  color: var(--noir-texte);
  background: var(--blanc);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: all var(--transition-rapide);
}

ul {
  list-style: none;
}

main {
  min-height: 100vh;
}

/* TOP BAR */

.top-bar {
  background: var(--rouge-principal);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 8px 1rem;
}

.top-bar a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--blanc);

  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--beige-fond);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;

  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 80px;
  height: auto;
}

/* NAVIGATION */

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  font-family: var(--police-titre);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: var(--noir-texte);
  padding: 10px 12px;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--rouge-principal);
}

/* DROPDOWN */

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 230px;

  background: var(--vert-olive);

  border-radius: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all var(--transition-rapide);

  overflow: hidden;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 12px 18px;
  color: var(--blanc);
}

.dropdown li a:hover {
  background: rgba(255,255,255,0.1);
}

/* BUTTONS */

.btn-reservation,
.btn-red {
  background: var(--rouge-principal);
  color: var(--blanc) !important;

  border-radius: 40px;

  font-family: var(--police-titre);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all var(--transition-rapide);
}

.btn-reservation {
  padding: 12px 18px;
  font-size: 12px;
}

.btn-red {
  padding: 10px 22px;
  font-size: 12px;
}

.btn-red:hover,
.btn-reservation:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* BURGER */

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--noir-texte);
  border-radius: 2px;
}


/* =========================
   BURGER
========================= */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--noir-texte);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Animation croix */

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   MENU MOBILE
========================= */

.mobile-menu {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;

  background: var(--beige-fond);

  display: none;

  z-index: 2000;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.mobile-menu.open {
  display: block;
  animation: fadeMenu 0.3s ease;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-menu a {
  display: block;

  padding: 14px 0;

  font-family: var(--police-titre);
  font-size: 14px;
  font-weight: 600;

  text-transform: uppercase;

  color: var(--noir-texte);

  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu a:hover {
  color: var(--rouge-principal);
}

/* Sous menu clubs */

.mobile-sub {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-sub.open {
  display: block;
}

.mobile-sub a {
  font-size: 13px;
  text-transform: none;
  color: var(--vert-olive);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 999;
  }
}

@media (min-width: 901px) {

  .mobile-menu {
    display: none !important;
  }

  .burger {
    display: none;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 901px) {

  .mobile-menu {
    display: none !important;
  }

  .burger {
    display: none;
  }
}

/* ANIMATION */

@keyframes fadeMenu {

  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO */

.services-pre {
  background: var(--rouge-principal);

  padding: 5rem 1rem;

  text-align: center;

  color: var(--blanc);
}

.services-pre h1 {
  font-family: var(--police-titre);
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.services-pre p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
}

/* CONTAINER */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* SECTION TITLE */

.section-title {
  font-family: var(--police-titre);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 3rem 0 2rem;
}

.underline-red::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--rouge-principal);

  display: block;
  margin: 10px auto 0;
}

/* SERVICES */

.services-grid-custom {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2rem;

  padding: 1rem;
}

.service-card-custom {
  background: var(--blanc);

  border-radius: var(--bordure-arrondie);

  overflow: hidden;

  box-shadow: var(--ombre-boite);

  transition: all var(--transition-rapide);

  display: flex;
  flex-direction: column;
}

.service-card-custom:hover {
  transform: translateY(-6px);
}

.service-img {
  height: 230px;
  object-fit: cover;
}

.service-body {
  padding: 1.5rem;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-family: var(--police-titre);
  text-transform: uppercase;
  color: var(--rouge-principal);

  font-size: 1.35rem;

  margin-bottom: 0.8rem;
}

.service-body p {
  color: var(--gris-texte);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-features {
  margin-bottom: 1rem;
}

.service-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rouge-principal);
  font-weight: bold;
}

.price-badge {
  background: var(--beige-clair);

  color: var(--rouge-principal);

  padding: 0.7rem 1rem;

  border-radius: 6px;

  font-family: var(--police-titre);
  font-size: 1.1rem;
  font-weight: 700;

  display: inline-block;

  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--gris-texte);
}

.service-footer {
  margin-top: auto;
  padding-top: 1.5rem;
}

.stage-badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: auto;
  max-width: fit-content;

  background: var(--vert-olive);
  color: var(--blanc);

  font-size: clamp(0.68rem, 2vw, 0.75rem);
  font-weight: 700;

  padding: 6px 12px;

  border-radius: 999px;

  margin-bottom: 1rem;

  white-space: nowrap;
}

/* SEPARATOR */

.section-separator {
  max-width: 1200px;
  margin: 4rem auto;
  border: none;
  border-top: 2px solid var(--beige-fond);
}

/* DISCOVER */

.discover-links {
  background: var(--beige-clair);
  text-align: center;
  padding: 3rem 1rem;
}

.discover-links p {
  font-family: var(--police-titre);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.discover-links a {
  color: var(--rouge-principal);
  font-family: var(--police-titre);
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.discover-links a:hover {
  border-color: var(--rouge-principal);
}

/* FOOTER */

.footer {
  background: var(--rouge-principal);
  color: var(--blanc);

  padding: 4rem 1rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--police-titre);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--blanc);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;

  border-top: 1px solid rgba(255,255,255,0.15);

  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-sub {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-sub.open {
  display: block;
}

/* =========================
   CTA MENU BURGER FIX
========================= */

.mobile-menu .btn-reservation {
  display: inline-flex;
  width: fit-content;
  align-self: flex-start; /* évite qu'il s'étire en colonne */
  margin-top: 12px;

  padding: 10px 16px; /* léger resserrage propre */
  white-space: nowrap; /* empêche retour à la ligne */

  border-radius: 999px; /* capsule propre */
}

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-grid-custom {
    gap: 1.5rem;
  }

  .discover-links a {
    display: block;
    margin-top: 1rem;
  }

  .service-img {
    height: 210px;
  }

  .services-pre {
    padding: 4rem 1rem;
  }
}


.mobile-menu {
  display: none;
  background: var(--beige-fond);
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  padding: 1rem;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;

  font-family: var(--police-titre);
  font-size: 14px;
  font-weight: 600;

  text-transform: uppercase;

  color: var(--noir-texte);

  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu a:hover {
  color: var(--rouge-principal);
}

.mobile-sub {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-sub a {
  font-size: 13px;
  text-transform: none;
  color: var(--vert-olive);
}

@media (min-width: 901px) {
  .footer-col:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-col:first-child a {
    display: flex;
    justify-content: center;
  }
}