@import url('https://fonts.googleapis.com/css2?family=Ewert&family=Cookie&family=Lato:wght@300;400;700&display=swap');

:root {
  --bleu: #0B3B6C;
  --bleu-clair: #2a3f6f;
  --or: #CDC06B;
  --or-clair: #e8c96a;
  --blanc: #ffff;
  --blanc-creme: #ffffff;
  --texte: #1a2a4a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: 'Lato', sans-serif; background: var(--blanc); color: var(--texte); overflow-x: hidden; max-width: 100vw; padding-top: 150px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 2px solid var(--or);
  padding: 0rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  overflow: hidden;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo img {
  height: 230px;
  width: auto; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Cookie', cursive;
  font-size: 1.6rem;
  color: var(--or);
  border: 2px solid var(--or);
  padding: 0.3rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--or);
  color: #ffffff;
}

.nav-links a.active {
  background: var(--bleu);
  color: var(--or);
  border-color: var(--or);
}

.nav-profil {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  overflow: visible;
  padding: 0;
}

.nav-profil img {
  height: 230px;
  width: auto;
  object-fit: contain;
  margin-top: 150px;
  margin-right: 50px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--bleu); border-radius: 2px; }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 4rem 2rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 105vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem 6rem;
  text-align: center;
  background-image: url('../img/train.png') !important;
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin-top: -150px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Ewert', Regular;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  color: #0B3B6C;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: 'Cookie', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #0B3B6C;
  line-height: 1.4;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--blanc);
  padding: 5rem 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.stat-card {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 340px;
  text-align: center;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.stat-number {
  font-family: 'Ewert', cursive;
  font-size: 200px;
  color: var(--or);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Cookie', cursive;
  font-size: 40px;
  color: var(--bleu);
  line-height: 1.3;
}

.stat-desc {
  font-family: 'Cookie', cursive;
  font-size: 40px;
  color: var(--bleu);
  line-height: 1.5;
}

.stat-action, .stat-action-placeholder {
  width: 100%;
  margin-top: auto;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  font-family: 'Cookie', cursive;
  font-size: 30px;
  background: #c9a84c;
  color: #ffffff;
  border: none;
  padding: 0.4rem 2.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--bleu);
  color: #ffffff;
}

/* ===== ACCROCHE ===== */
.accroche-section {
  padding: 5rem 3rem;
  text-align: center;
}

.accroche-title {
  font-family: 'Ewert', cursive;
  font-size: 30px;
  color: #0B3B6C;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.5px var(--bleu);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px; 
}

.accroche-loupe {
  width: 90px !important;
  height: auto !important;
  display: inline-block !important;
  transform: scaleX(-1);
  margin-top: 5px;
}

/* ===== DESCRIPTION ===== */
.desc-section {
  padding: 4rem 3rem;
  display: flex;
  justify-content: center;
}

.desc-card {
  border: 1.5px solid var(--or);
  border-radius: 8px;
  padding: 3.5rem 4rem;
  max-width: 700px;
  text-align: center;
  position: relative;
}

.desc-card::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 800px;
  background-image: url('/public/img/enluminure.png');
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  top: -235px;
  left: -130px;
}

.desc-card::after {
  content: '';
  position: absolute;
  width: 1000px;
  height: 800px;
  background-image: url('/public/img/enluminure.png');
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: -230px;
  right: -125px;
  transform: rotate(180deg);
}

.desc-card p {
  font-family: 'Cookie', cursive;
  font-size: 33px;
  color: #0B3B6C;
  line-height: 1.7;
  position: relative;
  z-index: 5;
}

/* ===== AVIS ===== */
.avis-section {
  padding: 3rem 3rem 5rem;
  text-align: center;
}

.avis-title {
  font-family: 'Ewert', cursive;
  font-size: 30px;
  color: #0B3B6C;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.5px var(--bleu);
  margin-bottom: 1rem;
}

.avis-desc {
  font-family: 'Cookie', cursive;
  font-size: 33px;
  color: #0B3B6C;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.avis-card {
  border: 1.5px solid var(--or);
  border-radius: 8px;
  padding: 2rem 3rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.avis-card::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 60%;
  border: 1.5px solid var(--or);
  border-radius: 4px;
  right: calc(100%);
}

.avis-card::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 60%;
  border: 1.5px solid var(--or);
  border-radius: 4px;
  left: calc(100%);
}

.avis-placeholder {
  font-family: 'Cookie', cursive;
  font-size: 70px;
  color: #0B3B6C;
}

/* ===== FOOTER ===== */
footer {
  background: var(--blanc);
  border-top: 2px solid var(--or);
  padding: 2rem 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-links a {
  font-family: 'Cookie', cursive;
  font-size: 1.1rem;
  color: #0B3B6C;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--or); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-direction: row-reverse;
}

.footer-social a img {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.footer-social a span {
  font-family: 'Cookie', cursive;
  font-size: 1.5rem;
  color: #0B3B6C;
}

.footer-social a:hover img { opacity: 0.7; }
.footer-social a:hover span { color: var(--or); }

.footer-copy {
  font-family: 'Cookie', cursive;
  font-size: 1rem;
  color: var(--bleu);
  opacity: 0.7;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 0 3rem 4rem;
  display: flex;
  justify-content: center;
}

.video-placeholder {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.video-placeholder p {
  font-family: 'Cookie', cursive;
  font-size: 3rem;
  color: var(--bleu);
}

/* ===== CONCEPT ===== */
.concept-section {
  padding: 3rem 3rem;
  display: flex;
  justify-content: center;
}

.concept-card {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 3rem 4rem;
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: visible;
}

.concept-card::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 800px;
  background-image: url('/public/img/enluminure.png');
  background-size: contain;
  background-repeat: no-repeat;
  top: -180px;
  left: -80px;
  pointer-events: none;
  z-index: 0;
}

.concept-card::after {
  content: '';
  position: absolute;
  width: 1000px;
  height: 800px;
  background-image: url('/public/img/enluminure.png');
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -180px;
  right: -80px;
  top: auto;
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 0;
}

.concept-title {
  font-family: 'Ewert', cursive;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--bleu);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.concept-body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.concept-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.concept-text p {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--bleu);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.concept-ticket {
  flex: 0 0 250px;
}

.concept-ticket img {
  width: 250px;
  height: auto;
  transform: rotate(10deg);
}

.concept-para {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--bleu);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.concept-para--accent {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.concept-deroulement {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.concept-engrenages {
  flex: 0 0 160px;
}

.concept-engrenages img {
  width: 100%;
  height: auto;
}

.concept-liste {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.concept-liste li {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--bleu);
  line-height: 1.5;
  padding-left: 1rem;
}

.concept-liste li::before {
  content: '• ';
  color: var(--or);
}

.concept-cta {
  padding: 4rem 3rem 6rem;
  text-align: center;
}

.concept-cta-title {
  font-family: 'Ewert', cursive;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--bleu);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== INFOS PRATIQUES ===== */
.infos-hero {
  text-align: center;
  padding: 2rem 3rem 0;
}

.infos-hero-title {
  font-family: 'Ewert', cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--bleu);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.infos-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid var(--or);
  margin-bottom: 1rem;
}

.infos-nav a {
  font-family: 'Cookie', cursive;
  font-size: 1.8rem;
  color: var(--or);
  text-decoration: underline;
  transition: color 0.2s;
}

.infos-nav a:hover { color: var(--bleu); }

.infos-map {
  flex: 0 0 350px;
  border-radius: 8px;
  overflow: hidden;
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.infos-grid .concept-card {
  max-width: 100%;
  padding: 3rem 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.infos-grid .concept-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.infos-grid .concept-liste {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.infos-grid .concept-liste li {
  font-family: 'Cookie', cursive;
  font-size: 1.6rem;
  color: var(--bleu);
  line-height: 1.4;
  white-space: normal !important;
  text-align: left;
}

.infos-grid .concept-ticket {
  flex: 0 0 140px;
  width: 140px;
}

.infos-grid .concept-ticket img {
  width: 100%;
  height: auto;
  transform: none !important;
  object-fit: contain;
}

#lieu .concept-card {
  border-color: var(--bleu);
  border-width: 2px;
}

#contacts .concept-ticket img {
  width: 200px;
  transform: none;
}

/* ===== STYLE DU FORMULAIRE D'INSCRIPTION / RESERVATION (MAQUETTE) ===== */
.booking-section {
  padding: 3rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}

.booking-main-title {
  font-family: 'Ewert', cursive;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--bleu);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  word-break: break-word;
}

.booking-card {
  border: 1.5px solid var(--or);
  border-radius: 8px;
  padding: 4rem 5rem;
  max-width: 950px;
  width: 100%;
  position: relative;
  background: #ffffff;
  box-sizing: border-box;
}

/* Enluminures de coins */
.booking-card .booking-corner {
  position: absolute;
  width: 45px;
  height: 45px;
  background: url('/public/img/enluminure.png') no-repeat center/contain;
  pointer-events: none;
}
.booking-card .booking-corner.tl { top: 12px; left: 12px; }
.booking-card .booking-corner.tr { top: 12px; right: 12px; transform: scaleX(-1); }
.booking-card .booking-corner.bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.booking-card .booking-corner.br { bottom: 12px; right: 12px; transform: rotate(180deg); }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.form-row.row-top {
  align-items: flex-start;
}

.booking-form .form-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: row;
}

.booking-form .form-group label {
  font-family: 'Cookie', cursive;
  font-size: 1.8rem;
  color: var(--bleu);
  white-space: nowrap;
}

.booking-form .form-group input[type="text"],
.booking-form .form-group input[type="email"],
.booking-form .form-group input[type="tel"],
.booking-form .form-group select,
.booking-form textarea {
  font-family: 'Lato', sans-serif;
  border: 1px solid var(--or);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--bleu);
  outline: none;
  background: #ffffff;
  font-size: 1rem;
}

.booking-form .form-group input[type="text"],
.booking-form .form-group input[type="email"],
.booking-form .form-group input[type="tel"] {
  flex: 1;
  width: 100%;
}

.booking-form .form-group.size-small select {
  width: 70px;
}

.triple-select {
  display: flex;
  gap: 8px;
}
.triple-select select {
  width: 65px;
}

.form-notice {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--or);
  text-align: center;
  line-height: 1.4;
  margin: -5px 0 5px 0;
}

.form-separator {
  text-align: center;
  position: relative;
  margin: 5px 0;
}
.form-separator span {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--or);
  background: #ffffff;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.form-separator::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--or);
  opacity: 0.5;
  z-index: 1;
}

.section-divider {
  border: none;
  height: 1px;
  background: var(--or);
  opacity: 0.5;
  margin: 15px 0;
}

.form-row.textarea-row {
  grid-template-columns: 1.2fr 2fr;
  gap: 20px;
  align-items: flex-start;
}
.form-row.textarea-row .label-left label {
  white-space: normal;
  line-height: 1.3;
}
.booking-form textarea {
  width: 100%;
  resize: vertical;
}

.options-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.option-title {
  font-family: 'Cookie', cursive;
  font-size: 1.8rem;
  color: var(--bleu);
}
.checkbox-label {
  cursor: pointer;
  display: inline-block;
}
.checkbox-label input {
  display: none;
}
.custom-checkbox {
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid var(--or);
  border-radius: 4px;
  background: #ffffff;
  position: relative;
}
.checkbox-label input:checked + .custom-checkbox::after {
  content: '';
  position: absolute;
  top: 3px; left: 7px;
  width: 5px; height: 11px;
  border: solid var(--bleu);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-submit-container {
  text-align: center;
  margin-top: 20px;
}

/* --- DESIGN DES MESSAGES PHP --- */
.msg-status {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.msg-erreur { background: #ffebeb; color: #cc0000; border: 1px solid #ffcccc; }
.msg-succes { background: #ebffeb; color: #008800; border: 1px solid #ccffcc; }

#repas .concept-ticket {
  flex: 0 0 200px;
}

#repas .concept-ticket img {
  width: 200px;
  transform: none;
}

#hebergement .concept-card {
  border-color: var(--bleu);
  border-width: 2px;
}


#hebergement .concept-ticket {
  flex: 0 0 250px;
}

#hebergement .concept-ticket img {
  width: 250px;
  transform: none;
}

#contacts .concept-card .concept-body {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2rem;
}

#contacts .concept-ticket {
  flex: 0 0 150px !important;
  width: 150px !important;
}

#contacts .concept-ticket img {
  width: 150px !important;
  transform: none !important;
}

/* ===== TARIFS ===== */
.tarifs-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tarifs-tables {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.tarifs-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tarifs-label {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--bleu);
  text-align: center;
}

.tarifs-table {
  border-collapse: collapse;
}

.tarifs-table td {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--bleu);
  border: 1.5px solid var(--bleu);
  padding: 0.5rem 1.2rem;
}

.tarifs-prix {
  font-family: 'Ewert', cursive !important;
  color: var(--or) !important;
  font-size: 1.2rem !important;
}

.tarifs-reductions {
  display: flex;
  gap: 3rem;
}

.tarifs-red-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tarifs-red-col p {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--bleu);
}

.tarifs-red-title {
  font-size: 1.4rem !important;
  margin-bottom: 0.3rem;
}


/* ===== BOOKING / INSCRIPTION ===== */
.booking-section {
  padding: 3rem 3rem 6rem;
  display: flex;
  justify-content: center;
}

.booking-main-title {
  font-family: 'Ewert', cursive;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--bleu);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.booking-card {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 3rem 4rem;
  max-width: 900px;
  width: 100%;
  position: relative;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--bleu);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--bleu);
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bleu);
}

.triple-select {
  display: flex;
  gap: 0.5rem;
}

.triple-select select {
  width: 70px;
}

.form-notice {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--or);
  text-align: center;
  line-height: 1.6;
}

.form-separator {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--or);
}

.form-separator::before,
.form-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--or);
}

.form-separator span {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--or);
  white-space: nowrap;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--or);
  margin: 0.5rem 0;
}

.textarea-row {
  align-items: flex-start;
}

.label-left {
  justify-content: center;
}

.label-left label {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--bleu);
}

.form-group textarea {
  width: 100%;
  resize: vertical;
}

.options-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.option-photo-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  text-align: left;
}

.option-text {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--bleu);
  line-height: 1.4;
}

.option-price {
  color: var(--or);
  font-weight: bold;
}

.option-title {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--bleu);
  text-align: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--or);
  border-radius: 3px;
  display: inline-block;
  background: #ffffff;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
  background: var(--or);
}

.form-submit-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.msg-status {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.msg-erreur { color: #c0392b; border: 1px solid #c0392b; }
.msg-succes { color: #27ae60; border: 1px solid #27ae60; }




/* ===== CONNEXION ===== */
.connexion-section {
  padding: 3rem;
  display: flex;
  justify-content: center;
}

.connexion-wrapper {
  position: relative;
  max-width: 900px;
  width: 100%;
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.connexion-coin {
  position: absolute;
  width: 1000px;
  height: 800px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

.connexion-coin-tl {
  top: -190px;
  left: -250px;
}

.connexion-coin-br {
  bottom: -190px;
  right: -250px;
  transform: rotate(180deg);
}

.connexion-icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 150px;
}

.connexion-icon img {
  position: absolute;
  top: 50px;
  left: 460px;
  transform: translateX(-50%);
  width: 250px;
  height: auto;
}

.connexion-subtitle {
  font-family: 'Cookie', cursive;
  font-size: 1.6rem;
  color: var(--bleu);
  position: relative;
  z-index: 1;
}

.connexion-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.connexion-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.connexion-field label {
  font-family: 'Cookie', cursive;
  font-size: 1.4rem;
  color: var(--bleu);
}

.connexion-field input {
  width: 200px;
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--bleu);
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  background: #ffffff;
  outline: none;
}

.connexion-field input:focus {
  border-color: var(--bleu);
}

.btn-connexion {
  font-family: 'Cookie', cursive;
  font-size: 1.5rem;
  background: var(--bleu);
  color: var(--or);
  border: none;
  padding: 0.5rem 3rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-connexion:hover {
  background: var(--or);
  color: #ffffff;
}

.connexion-create {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--or);
  text-decoration: underline;
  transition: color 0.2s;
}

.connexion-create:hover {
  color: var(--bleu);
}

/* ===== PROFIL ===== */
.profil-section {
  padding: 3rem;
}

.profil-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.profil-col-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profil-col-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profil-card {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  position: relative;
}

.profil-card-title {
  font-family: 'Ewert', cursive;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--bleu);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.profil-info p {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--bleu);
  line-height: 1.8;
}

.profil-info p span {
  font-weight: bold;
}

.profil-equipe-nom {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--bleu);
  text-align: center;
  margin-bottom: 1rem;
}

.profil-joueur-card {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.profil-joueur-card p,
.profil-joueur-card label {
  font-family: 'Cookie', cursive;
  font-size: 1.1rem;
  color: var(--bleu);
}

.profil-joueur-card input {
  font-family: 'Cookie', cursive;
  font-size: 1rem;
  color: var(--bleu);
  border: 1px solid var(--or);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  width: 100%;
  margin-top: 0.2rem;
}

.profil-add-btn {
  font-size: 1.5rem !important;
  padding: 0.2rem 1rem !important;
  margin-top: 0.5rem;
}

.profil-score-card {
  border-color: var(--or);
}

.profil-score-number {
  font-family: 'Ewert', cursive;
  font-size: 4rem;
  color: var(--or);
  text-align: center;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.profil-score-text {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--bleu);
  text-align: center;
  line-height: 1.6;
}

.btn-partager {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  background: var(--bleu);
  color: var(--or);
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
}

.btn-partager:hover {
  background: var(--or);
  color: #ffffff;
}

.profil-avis-title {
  text-align: center;
  margin-top: 0.5rem;
}

.profil-avis-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.profil-avis-form textarea {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--bleu);
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 0.8rem;
  resize: vertical;
  outline: none;
}

.btn-publier {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  background: var(--bleu);
  color: var(--or);
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  align-self: center;
  transition: all 0.3s ease;
}

.btn-publier:hover {
  background: var(--or);
  color: #ffffff;
}

.profil-avis-existing {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 0.8rem 1rem;
}

.profil-avis-existing p {
  font-family: 'Cookie', cursive;
  font-size: 1.2rem;
  color: var(--bleu);
}

/* ===== PAIEMENT ===== */
.paiement-card {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.paiement-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.paiement-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.paiement-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ===== CONFIRMATION ===== */
.confirmation-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.confirmation-title {
  font-family: 'Ewert', cursive;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--bleu);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.confirmation-text {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--bleu);
  line-height: 1.6;
}


.profil-add-toggle {
  margin-top: 0.8rem;
  text-align: center;
}

.profil-add-link {
  font-family: 'Cookie', cursive;
  font-size: 1.3rem;
  color: var(--bleu);
  text-decoration: underline;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.profil-add-link:hover {
  color: var(--or);
}

.profil-add-icon {
  font-size: 1.4rem;
  color: var(--or);
}

/* ===== ADMIN ===== */
.admin-table-wrapper {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  padding: 3rem 4rem;
  max-width: 1100px;
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Cookie', cursive;
  color: var(--bleu);
  border: 1.5px solid var(--or);
}

.admin-table th,
.admin-table td {
  padding: 0.8rem;
  border-right: 1.5px solid var(--or);
  text-align: center;
}

.admin-table th:last-child,
.admin-table td:last-child {
  border-right: none;
}

.admin-table thead tr {
  border-bottom: 1.5px solid var(--or);
}

.admin-table tbody tr {
  border-bottom: 1.5px solid var(--or);
}

.admin-table th {
  font-size: 1.3rem;
}

.admin-table .col-date,
.admin-table .col-email,
.admin-table .col-tel {
  font-size: 1.1rem;
}

.admin-table .col-com {
  font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body { padding-top: 100px; }
  nav { padding: 0.8rem 1.5rem; height: 100px; overflow: hidden; }
  .nav-logo img { height: 110px; }
  .nav-links, .nav-profil { display: none; }
  .burger { display: flex; }
  
  .hero {
    padding: 6rem 0 4rem;
    min-height: 60vh;
    width: 100%;
    margin-top: -100px;
  }
  .stats-section { padding: 3rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .accroche-section { padding: 2rem 1.5rem; }
  .accroche-loupe { display: inline-block !important; width: 60px !important; }
  .desc-section { padding: 0 1.5rem 3rem; }
  .desc-card { padding: 2rem 1.5rem; max-width: 90%; }
  .desc-card p { font-size: 22px; }
  .desc-card::before, .desc-card::after { width: 80px; height: 80px; }
  .video-section { padding: 0 1.5rem 3rem; }
  .avis-section { padding: 2rem 1.5rem 3rem; }
  footer { padding: 1.5rem; flex-direction: column; align-items: center; }
  .footer-links { align-items: center; }
  .footer-right { align-items: center; }
  .avis-desc { font-size: 20px; }
  .avis-placeholder { font-size: 40px; }
  .avis-card::before, .avis-card::after { width: 60px; }

  .concept-section { padding: 2rem 1rem; }
  .concept-card { padding: 2rem 1.5rem; }
  .concept-card::before, .concept-card::after { display: none; }
  .concept-title { font-size: 1.2rem; margin-bottom: 1.5rem; }
  .concept-body { flex-direction: column; align-items: center; }
  .concept-text p, .concept-para { font-size: 1.1rem; }
  .concept-ticket { flex: 0 0 auto; width: 100%; display: flex; justify-content: center; }
  .concept-ticket img { width: 160px; }
  .concept-deroulement { flex-direction: column; align-items: center; gap: 1.5rem; }
  .concept-engrenages { flex: 0 0 auto; width: 100px; }
  .concept-liste li { font-size: 1.1rem; }
  .concept-cta { padding: 2rem 1.5rem 4rem; }
  .concept-cta-title { font-size: 1.3rem; }

  /* --- MENU MOBILE OPEN --- */
  .nav-mobile {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    z-index: 999;
    display: none;
  }
  
  .nav-mobile.open {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem;
    padding-top: 140px !important;
  }
  
  .nav-mobile a {
    font-family: 'Cookie', cursive;
    font-size: 2.2rem;
    color: var(--or);
    border: 2px solid var(--or);
    padding: 0.3rem 2rem;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    z-index: 2;
  }
  
  /* Bouton actif dans le menu mobile */
  .nav-mobile a.active {
    background: var(--bleu) !important;
    color: #ffffff !important;
    border-color: var(--or) !important;
  }
  
  .nav-mobile a.btn-reserver-mobile { color: #0B3B6C; font-weight: bold; }
  .nav-mobile a:hover { background: var(--bleu); color: #ffffff; }
  
  .nav-mobile a.btn-admin-mobile {
    border: none;
    font-size: 2rem;
    width: auto;
    padding: 0;
    text-decoration: underline;
    background: transparent;
    margin-top: 1.5rem !important;
    margin-bottom: 2rem;
    display: inline-block;
  }
  
  /* Placement strict des enluminures de coins sur mobile */
  .nav-mobile-coin {
    position: absolute !important;
    width: 350px !important;
    height: 350px !important;
    max-width: none !important;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
  }
  
  .nav-mobile-coin-tl { 
    top: -60px !important; 
    left: -60px !important; 
  }
  
  .nav-mobile-coin-br { 
    bottom: -60px !important; 
    right: -60px !important; 
    transform: rotate(180deg) !important; 
  }
  
  .nav-mobile-coin-tr, .nav-mobile-coin-bl { 
    display: none !important; 
  }
  
  .nav-mobile-profil {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-top: 1.5rem;
    position: relative;
    z-index: 5;
  }
  
  .nav-mobile-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none; border: none;
    font-size: 2.5rem; color: var(--bleu); cursor: pointer;
    z-index: 1000;
  }

  /* Cartes "Infos Pratiques" adaptées au mobile */
  .infos-grid { 
    grid-template-columns: 1fr !important; 
    gap: 2rem;
  }
  
  .infos-grid .concept-card { 
    padding: 2rem 1.5rem !important; 
  }
  
  .infos-grid .concept-body { 
    flex-direction: row !important; 
    justify-content: space-between;
    gap: 1rem;
  }
  
  .infos-grid .concept-ticket { 
    flex: 0 0 100px !important; 
    width: 100px !important;
  }
  
  .infos-grid .concept-ticket img { 
    width: 100% !important; 
  }
  
  .infos-grid .concept-liste li { 
    font-size: 1.3rem !important; 
  }
  
  .infos-map { flex: 0 0 auto; width: 100%; }
  .infos-nav { gap: 0.5rem; }
  .infos-nav a { font-size: 1.1rem; }

  /* Responsive pour le VRAI formulaire de réservation sur Mobile */
  .booking-card {
    padding: 3rem 1.5rem !important;
  }
  .booking-card .booking-corner {
    width: 30px !important;
    height: 30px !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .form-row.textarea-row {
    grid-template-columns: 1fr !important;
  }
  .booking-form .form-group {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
  }
  .booking-form .form-group.size-small {
    flex-direction: row !important;
    align-items: center !important;
  }
  .booking-form .form-group.date-group {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }
  .booking-form .form-group input[type="text"],
  .booking-form .form-group input[type="email"],
  .booking-form .form-group input[type="tel"] {
    width: 100% !important;
  }
  .hidden-on-desktop {
    display: none !important;
  }

.tarifs-tables { flex-direction: column; }
.tarifs-reductions { gap: 1.5rem; }

 .booking-section { padding: 2rem 1rem 4rem; }
  .booking-card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .triple-select select { width: 60px; }

  .profil-section { padding: 1.5rem 1rem; }
  .profil-grid { grid-template-columns: 1fr; }

}
