/* Import des fonts */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Spectral:wght@400;600&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Spectral', serif;
  background-color: #0a0f14;
  color: #eee;
  line-height: 1.8;
  scroll-behavior: smooth;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  padding: 1rem 0.5rem;
  z-index: 1000;
  border-bottom: 3px solid darkred;
  box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}
.site-header ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
}
.site-header a {
  text-decoration: none;
  color: gold;
  font-weight: bold;
  font-size: 2.6rem;
  font-family: 'Creepster', cursive;
  letter-spacing: 2px;
  transition: color 0.3s, text-shadow 0.3s;
}
.site-header a:hover {
  color: red;
  text-shadow: 0 0 10px red;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: url("assets/hero.jpg") no-repeat center center/cover;
  padding: 2rem;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px; /* taille de la zone du fondu */
  background: linear-gradient(to bottom, transparent 0%, #0a0f14 100%);
  pointer-events: none;
}


.hero-content {
  color: red;
  margin-left: 50%;
  text-align: center;
  text-shadow: 2px 2px 10px black;
}

.logo {
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-family: 'Creepster', cursive;
}
.hero-content h3 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  font-family: 'Creepster', cursive;
}
.tagline {
  font-size: 2.2rem;
  font-weight: bold;
}

/* Sections générales */
.section {
  padding: 2rem;
  max-width: 1400px;
  margin: auto;
  font-size: 1.25rem;
  line-height: 1.9;
  position: relative;
}

.section-title {
  text-align: center;
  color: gold;
  font-family: 'Creepster', cursive;
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 10px black;
}

/* Séparateurs horreur */
.section-divider {
  height: 50px;
  margin: 3rem auto;
  background: url("assets/images/blood-border.png") repeat-x center;
  background-size: contain;
  max-width: 100%;
}

/* Programmation */
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.prog-text {
  text-align: justify;
  font-size: 1.5rem;
  color: #f0e6d2;
}
.prog-text p {
  margin-bottom: 1.2rem;
}
.highlight {
  color: red;
  font-weight: bold;
}
.prog-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  border: 3px solid darkred;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  max-height: 800px; /* limite la hauteur */
}


/* Infos */
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.infos-text {
  text-align: center;
  font-size: 1.4rem;
  color: #ffcccc;
}
.infos-text ul {
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 0;
}
.infos-text li {
  margin-bottom: 1rem;
}
#infos {
  margin-bottom: 4rem; /* espace supplémentaire sous la section Infos */
}

/* Réservations */
#reservation-form {
  background: #111;
  color: #f5deb3;
  font-family: 'Spectral', serif;
  padding: 3rem;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 0 25px rgba(255,0,0,0.4);
  border: 2px solid #8b0000;
}

#reservation-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#reservation-form label {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d2b48c;
  font-family: 'Spectral', serif; /* plus lisible */
}

#reservation-form input,
#reservation-form select {
  padding: 0.7rem;
  border: 2px solid #a0522d;
  border-radius: 5px;
  background: #fdf5e6;
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  color: #333;
}

#reservation-form input:focus,
#reservation-form select:focus {
  outline: none;
  border-color: #ff4500;
  box-shadow: 0 0 8px #ff4500;
}

.checkbox {
  display: flex;
  align-items: flex-start;   /* aligne le texte en haut de la case */
  gap: 0.5rem;
  flex-wrap: wrap;           /* autorise le retour à la ligne fluide */
}
.checkbox a {
  color: lightblue;
  text-decoration: underline;
}


#reservation-form button {
  padding: 1rem;
  background: #8b0000;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  font-family: 'Spectral', serif; /* bouton lisible */
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}
#reservation-form button:hover {
  background: #a10000;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .prog-grid,
  .infos-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo {
    max-width: 320px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content h3 {
    font-size: 2.8rem;
  }
  .tagline {
    font-size: 1.4rem;
  }
}
/* Desktop: menu classique affiché */
.site-header { display: block; }
/*.hamburger, .mobile-menu { display: none; }*/
.hamburger { display: block !important; background: yellow; }

/* Mobile */
@media (max-width: 768px) {
  .site-header { display: none; } /* cache le menu classique */

 /* Bouton hamburger */
.hamburger {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 2.4rem;
  color: red;
  cursor: pointer;
  z-index: 3000;
  background: none;
  border: none;
}

/* Menu mobile (caché par défaut) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  padding: 2rem;
  transition: left 0.3s ease;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  text-align: left;
}

/* Quand le menu est ouvert */
.mobile-menu.open {
  left: 0;
}

/* Liens du menu mobile */
.mobile-menu a {
  font-family: 'Creepster', cursive;
  font-size: 2rem;
  color: gold;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.mobile-menu a:hover {
  color: red;
  text-shadow: 0 0 10px red;
}



}
@media (max-width: 768px) {
  .infos-map { display: none; }
  .infos-text { text-align: center; }
}


.btn-map {
  display: block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background: red;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-map:hover {
  background: darkred;
  transform: scale(1.05);
}
@media (min-width: 769px) {
  .hamburger,
  .mobile-menu {
    display: none !important;
  }
}



/* --- Infos : fond dégradé pleine largeur --- */
/* --- Section Infos : fond pleine largeur --- */
/* === Wrappers pleine largeur === */
.section-wrapper {
  width: 100%;
  padding: 5rem 0;
}

/* Fond spécifique */
#infos.section-wrapper {
  background: linear-gradient(180deg, #0a0f14 0%, #1a0b0b 100%);
}


/* === Contenu interne limité === */
.section-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* Formulaire toujours limité à 800px */
/* === Réservation : fond sang pleine largeur === */
/*#reservation.section-wrapper {*/
/*     margin-top: -4rem;*/
/*  background: url("assets/separators/blood-splatter.png") center top repeat,*/
/*              #111;*/
/*  background-size: cover; /* l’image couvre toute la largeur */
/*  padding: 5rem 0;*/
/*}*/

/* Formulaire : fond transparent, pas de couleur qui masque */
/*#reservation.section-wrapper::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
 /* height: 100px; /* zone du fondu 
/*  background: linear-gradient(to bottom, #0a0f14 0%, transparent 100%);*/
/*  pointer-events: none;*/
/*}*/

#reservation.section-wrapper {
 margin-top: -6rem;    
  background:
    linear-gradient(to bottom, #1a0b0b 0%, transparent 20%), /* fondu en haut */
    url("assets/separators/blood-splatter.png") top center repeat-x,
    #111;
  background-size:cover; /* 1er = dégradé, 2e = image */
}


/* Structure menu desktop avec 3 blocs */
.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Centrer le bloc du milieu */
.menu-center {
  display: flex;
  gap: 3rem;
  list-style: none;
}

/* Liens de gauche et de droite */
.menu-left,
.menu-right {
  list-style: none;
}

.menu-left li,
.menu-right li {
  display: inline-block;
}

/* Style lien Édition 2024 */
.link-2024 {
  color: #9b59b6; /* violet dark */
  font-weight: bold;
  font-size: 2rem;
  font-family: 'Creepster', cursive;
  text-decoration: none;
}
.link-2024:hover {
  color: #e056fd; /* violet clair au hover */
  text-shadow: 0 0 8px #e056fd;
}

/* Style lien Contact */
.link-contact {
  color: gold;
  font-weight: bold;
  font-size: 2rem;
  font-family: 'Creepster', cursive;
  text-decoration: none;
}
.link-contact:hover {
  color: red;
  text-shadow: 0 0 8px red;
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #0a0f14;
  padding: 2rem;
  color: #888;
  border-top: 2px solid darkred;
  font-size: 1rem;
  z-index: 10;
}

/* Dragon à gauche */
.site-footer {
  display: flex;
  justify-content: space-between; /* gauche et droite vont bien en bord */
  align-items: center;
  padding: 1.5rem 2rem;
  background: #000;
  border-top: 3px solid darkred;
  font-size: 1rem;
  position: relative; /* permet un centrage absolu */
}

/* Centrage réel du lien */
.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Logo Facebook */
.social-icon {
  width: 40px;   /* taille contrôlée */
  height: 40px;
  display: inline-block;
  object-fit: contain;
}

/* Centrage du lien */
.footer-center {
  flex: 1;
  text-align: center;
}
.mentions-link {
  color: gold;
  text-decoration: none;
  font-family: 'Spectral', serif;
  font-size: 1.2rem;
  transition: color 0.3s, text-shadow 0.3s;
}
.mentions-link:hover {
  color: red;
  text-shadow: 0 0 8px red;
}

/* Creebs à droite */
.footer-right {
  flex: 1;
  text-align: right;
}
.creebs {
  font-size: 1.4rem;
  font-weight: bold;
  color: #006400; /* vert sombre */
  font-family: 'Creepster', cursive;
}

/* Serpent entre Infos et Programmation */
#programmation.section-wrapper {
  position: relative;
}

/* Le serpent "remplit" la largeur et reste indépendant du contenu */
/* Serpent décoratif entre Programmation et Infos */
/* Serpent décoratif entre Programmation et Infos */
.snake-separator {
  position: relative;
  height: 0; /* ne prend plus de place dans le flux */
  z-index: 200;
}

.snake-separator img {
  position: absolute;
  top: -60px;          /* chevauche la section du dessus */
  left: 0;
  width: 100%;         /* prend toute la largeur */
  height: 200px;       /* tu ajustes la hauteur visible */
  object-fit: cover;   /* garde le centrage */
  z-index: 200;
  pointer-events: none;
}

.menu-left {
  margin-left: 2rem; /* ajuste la valeur */
}

/* Décalage du lien Contact / Bénévole (droite) */
.menu-right {
  margin-right: 2rem; /* ajuste la valeur */
}
.resa-info {
  display: block;
  width: fit-content;      /* le paragraphe prend seulement la largeur du texte */
  margin: 0 auto 2rem auto;/* auto = centré horizontalement */
  font-size: 1.6rem;
  color: #ffcccc;
  font-style: italic;
  text-align: center;      /* utile si le texte passe à la ligne */
}


/* ==== SECTION : RESERVATIONS FERMÉES (VERSION GÉANTE) ==== */
.resa-closed {
  position: relative;
  background: radial-gradient(circle at center, #1a0b0b 0%, #000 85%);
  padding: 8rem 2rem;
  border: 5px solid darkred;
  border-radius: 15px;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.6);
  overflow: hidden;
  color: #f5deb3;
  font-family: 'Spectral', serif;
  text-align: center;
  max-width: 1000px;
  margin: 6rem auto;
}

/* Titre */
.resa-closed-title {
  font-family: 'Creepster', cursive;
  font-size: 6rem; /* GROS titre */
  color: #ff0000;
  text-shadow:
    0 0 25px #ff0000,
    0 0 40px darkred,
    0 0 80px black;
  margin-bottom: 3rem;
  letter-spacing: 3px;
  animation: flicker 2.5s infinite;
}

/* Texte */
.resa-closed-text {
  font-size: 2.2rem; /* Texte large et lisible */
  line-height: 1.9;
  color: #ffe6e6;
  text-shadow:
    0 0 15px #400000,
    0 0 30px #000;
  font-weight: 600;
}

.resa-closed-text strong {
  color: #ff4444;
  font-family: 'Creepster', cursive;
  font-size: 2.4rem;
}

.resa-closed-text .highlight {
  color: gold;
  font-family: 'Creepster', cursive;
  font-size: 2.6rem;
  text-shadow: 0 0 20px red, 0 0 40px darkred;
}

.resa-closed-text span {
  color: red;
  font-family: 'Creepster', cursive;
  font-size: 2.6rem;
  text-shadow: 0 0 12px darkred;
}

.frisson {
  display: block;
  margin-top: 2rem;
  font-size: 3rem;
  color: #ff3333;
  text-shadow:
    0 0 10px red,
    0 0 25px darkred,
    0 0 50px black;
  animation: pulse 3s infinite;
}

/* Effets animés */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.5; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Brume mouvante de fond */
.resa-closed-effect::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("assets/separators/blood-splatter.png") center/cover no-repeat;
  opacity: 0.15;
  animation: drift 60s linear infinite;
  z-index: 0;
}

@keyframes drift {
  from { transform: rotate(0deg) scale(1.1); }
  to { transform: rotate(360deg) scale(1.1); }
}

.resa-closed * {
  position: relative;
  z-index: 1;
}




/*#programmation.section-wrapper {*/
/*  background:
    linear-gradient(to bottom, #1a0b0b 0%, transparent 20%), /* fondu en haut 
    url("assets/separators/blood-thin.png") no-repeat right 80px,
    #0a0f14; /* ton fond par défaut derrière 
  background-size: auto 600px, 800px auto, auto; /* image étirée 
  position: relative;
}


/*#programmation.section-wrapper {*/
/*  margin-top: -6rem;    */
/*  background:*/
/*     couche 1 : dégradé qui couvre tout */
/*    linear-gradient(to bottom, #1a0b0b 0%, transparent 20%),*/
/*     couche 2 : image de sang placée à droite, un peu plus bas */
/*    url("assets/separators/blood-thin.png") no-repeat right 80px,*/
/*     couche 3 : fond par défaut */
/*    #0a0f14;*/
/*  background-size: auto 200px, 300px auto, auto;*/
/*  padding: 5rem 0;*/
/*  position: relative;*/
/*}*/