/* =============================== FONT ================================ */
@font-face {
  font-family: 'Laziness';
  src: url('../fonts/Laziness.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BreathRiver';
  src: url('../fonts/breath-of-the-river.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'JosephSophia';
  src: url('../fonts/josephsophia.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DangerZone';
  src: url('../fonts/Danger Zone Warning.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}





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

/* =============================== GLOBAL ================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

/* =============================== HEADER ================================ */
header {
  position: relative;
  background-color: #D3531D;
  height: 260px;
}

.logo {
  width: 110px;
  height: auto;

  /*=============================== Fusion avec le fond orange ===============================*/
  mix-blend-mode: multiply;

  /*=============================== Légère transparence ===============================*/
  opacity: 0.9;

  /*=============================== Adoucit les bords clairs ===============================*/
  filter: blur(0.3px) contrast(1.05);

  /*=============================== IMPORTANT : enlève toute trace de contour ===============================*/
  background: transparent;
}



.logo-left {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-370px, -45%);
}

.logo-right {
  position: absolute;
  right: 55%;
  top: 50%;
  transform: translate(370px, -45%) scaleX(-1);
}

.header-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-text h1,
.festival-title {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 2.8rem;
  color: #000;
  letter-spacing: 0.08em;

  text-shadow:
  2px 2px 0 rgba(0,0,0,0.7),
  6px 6px 10px rgba(0,0,0,0.4);
}


.header-text p {
  color: rgba(255, 255, 255, 0.95);

  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.55);
}


/*=============================== MENU ===============================*/
.menu {
  background-color: #1a1a1a;
  padding: 4px 0;
  position: relative;
  z-index: 1;
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  position: relative;
}

/*=============================== Liens menu ===============================*/
.menu a {
  font-family: 'Laziness', Arial, sans-serif;
  color: #fff;
  text-decoration: none;
}

/* =============================== BANNIERE VIDEO ================================ */
.video-banner {
  width: 100%;
  line-height: 0;
  position: relative;
}

.video-banner video {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.video-credit {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-style: italic;
  text-decoration: none;
  z-index: 10;
  transition: color 0.2s ease;
}

.video-credit:hover {
  color: #fff;
}

.sound-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.sound-btn:hover {
  background: #D3531A;
  transform: scale(1.1);
}

/* =============================== SECTIONS BASE ================================ */
.section {
  width: 100%;
}

/* =============================== HERO SECTIONS ,================================ */
.section--hero {
  background-color: #9c3312;
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.section--hero .container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.hero-content h2 {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
}
#programme .hero-content h2 {
  color: #000;
}

/* =============================== BALADE & EXPOSITION ================================ */
.photo-grid-vehicules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 380px;
}

.photo-grid-vehicules .thumb-small {
  height: 140px;
}

.vehicules-title {
  font-family: 'DangerZone', sans-serif !important;
  text-transform: uppercase;
}

/* ---- BOUTON EN SAVOIR PLUS ---- */
.en-savoir-plus-btn {
  align-self: flex-end;
  margin-top: 12px;
  background: none;
  border: none;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s ease;
}

.en-savoir-plus-btn:hover {
  color: #444;
}

/* ---- POPUP HOUTSTOCK ROAD ---- */
.road-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.road-modal-overlay.active {
  display: flex;
}

.road-modal {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.road-modal img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.road-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.road-modal-close:hover {
  background: #D3531A;
}

/* =============================== LINEUP ================================ */
.lineup-section {
  background-color: #1a1a1a;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lineup-section::before,
.lineup-section::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background-image: url('../images/mediator.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
}

.lineup-section::before {
  left: 20px;
  transform: translateY(-50%) rotate(-25deg);
}

.lineup-section::after {
  right: 20px;
  transform: translateY(-50%) rotate(25deg) scaleX(-1);
}

.lineup-title {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.lineup-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #D3531A;
  margin: 10px auto 0;
  border-radius: 2px;
}

.lineup-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.lineup-day {
  flex: 1;
  padding: 0 40px;
}

.lineup-divider {
  width: 2px;
  background: #D3531A;
  align-self: stretch;
  min-height: 300px;
  border-radius: 2px;
  opacity: 0.6;
}

.lineup-day-title {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 1.4rem;
  color: #D3531A;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.lineup-day-number {
  font-size: 2.2rem;
  color: #fff;
  vertical-align: middle;
}

.lineup-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lineup-band {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.lineup-band:hover {
  background: #D3531A;
  border-color: #D3531A;
  color: #fff;
}

.lineup-band a {
  color: inherit;
  text-decoration: none;
  display: block;
}

@media (max-width: 700px) {
  .lineup-grid {
    flex-direction: column;
    align-items: center;
  }

  .lineup-divider {
    width: 60px;
    height: 2px;
    min-height: unset;
    margin: 20px 0;
  }

  .lineup-day {
    padding: 0 10px;
    width: 100%;
  }
}

/* =============================== TITRE PRÉSENTATION – DÉGRADÉ (Firefox OK)================================ */
#Présentation h2 {
  font-family: 'BreathRiver', cursive;
  font-size: 3.2rem;
  margin-bottom: 18px;

  color: #000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}






/* =============================== SPLIT SECTIONS ================================ */
.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

/*=============================== FONDS ===============================*/
.section--orange {
  background-color: #c85a2d;
}

.section--light {
  background-color: #ffffff;
  color: #000;
}

/*=============================== TEXTE ===============================*/
.split-text {
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h3 {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;

  position: relative;      /* obligatoire pour les cœurs */
  display: inline-block;   /* colle les cœurs au texte */
  padding: 0 36px;         /* espace pour les cœurs */
}




/*=============================== IMAGE / GALERIE ===============================*/
.split-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 8px;
}

.photo-credit {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(0,0,0,0.35);
  align-self: flex-end;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.photo-credit:hover {
  color: #D3531A;
}

/* =============================== GALERIE PHOTOS ================================ */
.image-gallery {
  overflow: visible;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 420px;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 380px;
}

.thumb {
  position: relative;
}

.thumb-small {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.photo-grid-2 .thumb-small {
  height: 140px;
}

/*=============================== IMAGE AGRANDIE AU HOVER ===============================*/
.thumb-large {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
/*=============================== Hover par défaut (toutes les photos SAUF photo4) ===============================*/
.thumb:not(.thumb-vertical):hover .thumb-large {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/*=============================== Hover spécifique PHOTO4 ===============================*/
.thumb-vertical:hover .thumb-large {
  opacity: 1;
  transform: translate(-50%, -60%) scale(1);
}


/* =============================== SPLIT INVERSE ================================ */
.section--split.reverse .split-image {
  order: 2;
}

.section--split.reverse .split-text {
  order: 1;
}

/* =============================== RESPONSIVE ================================ */
@media (max-width: 900px) {
  .section--split {
    grid-template-columns: 1fr;
  }

  .photo-grid,
  .photo-grid-2 {
    max-width: 100%;
  }

  .thumb-small {
    height: 55px;
  }
}

/* =============================== HAMBURGER ================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================== RESPONSIVE MOBILE ================================ */
@media (max-width: 768px) {

  /* --- HEADER --- */
  header {
    height: auto;
    min-height: 160px;
    padding: 16px 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .logo-left, .logo-right, .header-speakers, .header-lamps {
    display: none;
  }

  .header-text {
    position: static;
    transform: none;
    text-align: center;
    padding: 0 16px;
  }

  .header-text h1,
  .festival-title {
    font-size: 3.2rem;
  }

  .header-text p {
    font-size: 0.9rem;
  }

  /* --- MENU --- */
  .hamburger {
    display: flex;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu {
    position: relative;
    padding: 4px 0;
  }

  .menu ul {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 10px 0;
    background: #1a1a1a;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }

  .menu ul.open {
    display: flex;
  }

  .menu ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu ul li a,
  .menu ul li .donation-button {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    width: 100%;
  }

  .menu-social {
    display: none !important;
  }

  /* --- VIDEO --- */
  .video-banner video {
    max-height: 240px;
  }

  /* --- SPLIT SECTIONS --- */
  .split-text {
    padding: 28px 18px;
    order: 1;
  }

  .split-image {
    order: 2;
    padding: 16px;
  }

  .section--split.reverse .split-text {
    order: 1;
  }

  .section--split.reverse .split-image {
    order: 2;
  }

  .split-text h3 {
    font-size: 1.3rem;
    padding: 0;
  }

  /* --- PHOTOS --- */
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 5px;
  }

  .photo-grid-2,
  .photo-grid-vehicules {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 6px;
  }

  .photo-grid-2 .thumb-small,
  .photo-grid-vehicules .thumb-small {
    height: 110px;
  }

  /* --- LINEUP --- */
  .lineup-section {
    padding: 40px 16px;
  }

  .lineup-grid {
    flex-direction: column;
    align-items: center;
  }

  .lineup-divider {
    width: 60px;
    height: 2px;
    min-height: unset;
    margin: 20px 0;
  }

  .lineup-day {
    padding: 0;
    width: 100%;
  }

  .lineup-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .lineup-band {
    font-size: 1rem;
    padding: 10px 14px;
  }

  /* --- HERO SECTIONS --- */
  .section--hero {
    min-height: 180px;
  }

  .section--hero .container {
    padding: 24px 18px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  /* --- INFOS PRATIQUES --- */
  .infos-title {
    font-size: 1.5rem !important;
  }

  /* --- AFFICHES BIO --- */
  .affiches-section {
    padding: 40px 0;
  }

  .affiches-titre {
    font-size: 1.6rem;
  }

  .affiches-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 20px 16px;
    max-width: 100%;
    margin: 0;
    scrollbar-width: none;
  }

  .affiches-grid::-webkit-scrollbar {
    display: none;
  }

  .affiche-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }

  /* --- BALADE --- */
  .section-vehicules {
    padding-bottom: 60px;
  }

  /* --- SPONSORS --- */
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 16px;
  }

  .sponsors-grid-section {
    padding: 40px 16px;
  }

  .become-sponsor-section {
    padding: 40px 16px;
  }
}

/* =============================== FOOTER ================================ */
footer {
  background-color: #999;
  padding: 12px;
  text-align: center;
}

footer p {
  color: #fff;
  font-size: 0.9rem;
}
/*=============================== SUPPRESSION DES LIGNES FANTÔMES AUTOUR DES LOGOS ===============================*/
header::before,
header::after,
.logo::before,
.logo::after {
  content: none !important;
  display: none !important;
}

/*=============================== Sécurité : aucune bordure / ombre ===============================*/
.logo {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
/* =============================== SOUS-MENU SPONSORING ================================ */

.sponsoring-item {
  position: relative;
}

/*=============================== Sous-menu caché par défaut ===============================*/
.sponsoring-item .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  border-radius: 14px;
  padding: 10px 14px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

/*=============================== ✅ Zone tampon invisible (ANTI DISPARITION) ===============================*/
.sponsoring-item .submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

/*=============================== Apparition au hover (PC) ===============================*/
.sponsoring-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
/* =============================== Affichage quand .open est ajouté (mobile) ================================ */
.sponsoring-item.open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}


/*=============================== Liens du sous-menu ===============================*/
.submenu a {
  font-family: 'Laziness', Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;

  padding: 8px 16px;
  border-radius: 10px;

  display: flex;                 /* ⬅️ important */
  align-items: center;           /* centrage vertical */
  justify-content: center;       /* centrage horizontal */

  text-align: center;
  white-space: nowrap;

  border: 2px solid transparent; /* évite les sauts */
  transition: background 0.2s ease, border 0.2s ease;
}


.submenu a:hover,
.submenu a:focus {
  background: #d85b28;      /* ⬅️ fond noir */
  color: #fff;

  border: 2px solid #d85b28;
}
/* =============================== SÉPARATEUR ROCK – VERSION FINALE ================================ */

.section-ambiance {
  position: relative;
}

.section-vehicules {
  position: relative;
  padding-bottom: 140px;
}

.rock-separator {
  position: absolute;
  left: 0;
  bottom: -82px; /* chevauche blanc + orange */

  width: 100vw;          /* ⬅️ touche les bords de l’écran */
  height: 160px;         /* ⬅️ plus imposant */

  background-image: url("../images/separateur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* ⬅️ remplit toute la largeur */

  pointer-events: none;
  z-index: 10;
  filter: none;
}
/* =============================== GALERIE AFFICHES BIO ================================ */
.affiches-section {
  background-color: #1a1a1a;
  padding: 60px 40px;
  text-align: center;
}

.affiches-titre {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.affiches-titre::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #D3531A;
  margin: 10px auto 40px;
  border-radius: 2px;
}

.affiches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.affiche-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.affiche-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #2e2e2e;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.affiche-card:hover img {
  transform: scale(1.05);
  border-color: #D3531A;
}

.affiche-card span {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 1rem;
  color: #D3531A;
}

/* ---- LIGHTBOX AFFICHES ---- */
.affiche-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.affiche-lightbox.active {
  display: flex;
}

.affiche-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.affiche-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.affiche-lightbox-close:hover {
  background: #D3531A;
}

/* ---- Boutons map cliquables sur mobile ---- */
@media (max-width: 768px) {
  .map-card iframe {
    pointer-events: none;
  }

  .map-overlay {
    top: 12px;
    right: 12px;
    left: auto;
    transform: none;
    gap: 16px;
  }

  .map-btn {
    width: 52px;
    height: 52px;
  }

  .map-btn img {
    width: 40px;
    height: 40px;
  }
}

/* ---- Image agrandie centrée sur mobile ---- */
@media (max-width: 768px) {
  .thumb-large {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) scale(0.85) !important;
    width: auto !important;
    max-width: 90vw !important;
    height: auto !important;
    max-height: 80vh !important;
    object-fit: contain !important;
    z-index: 9999;
  }

  .thumb:not(.thumb-vertical):hover .thumb-large {
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .thumb-vertical:hover .thumb-large {
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .vertical-photo4,
  .vertical-festival2 {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) scale(0.85) !important;
    width: 90vw !important;
    height: 80vh !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    z-index: 9999;
  }

  .thumb-vertical:hover .vertical-photo4,
  .thumb-vertical:hover .vertical-festival2 {
    transform: translate(-50%, -50%) scale(1) !important;
  }
}

/* =============================== COMPTE À REBOURS ================================ */
.countdown-section {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid #D3531A;
  border-bottom: 3px solid #D3531A;
}

.countdown-label {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}

.countdown-number {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 3rem;
  color: #D3531A;
  line-height: 1;
}

.countdown-unit {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-sep {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 2.5rem;
  color: #D3531A;
  margin-bottom: 20px;
}

.countdown-finished {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 1.8rem;
  color: #D3531A;
}

@media (max-width: 768px) {
  .countdown-number {
    font-size: 2.2rem;
  }

  .countdown-block {
    min-width: 60px;
  }

  .countdown-sep {
    font-size: 1.8rem;
  }
}

/* =============================== BOUTON RETOUR EN HAUT ================================ */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: #D3531A;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 9000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#back-to-top.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top:hover {
  background-color: #b84212;
  transform: translateY(-3px);
}

@media (min-width: 769px) {
  #back-to-top {
    display: none !important;
  }
}

/* =============================== FAQ ================================ */
.faq-section {
  background-color: #1a1a1a;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.faq-guitare {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 320px;
  opacity: 0.75;
  mix-blend-mode: luminosity;
  transform: rotate(-20deg);
  width: 450px;
  pointer-events: none;
  user-select: none;
}

.faq-titre {
  font-family: 'Laziness', Arial, sans-serif;
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.faq-titre::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #D3531A;
  margin: 10px auto 40px;
  border-radius: 2px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #242424;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: #D3531A;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  text-align: left;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  position: relative;
  font-family: Arial, sans-serif;
  transition: color 0.2s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #D3531A;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item.open .faq-question {
  color: #D3531A;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.faq-answer p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 16px;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 16px 44px 16px 16px;
  }
}

/* ---- Guitare FAQ masquée sur mobile ---- */
@media (max-width: 768px) {
  .faq-guitare {
    display: none;
  }
}

/* ---- Carrousel affiches mobile ---- */
@media (max-width: 768px) {
  .affiches-section {
    padding: 40px 0;
  }

  .affiches-grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 20px 16px;
    max-width: 100%;
    margin: 0;
    scrollbar-width: none;
  }

  .affiches-grid::-webkit-scrollbar {
    display: none;
  }

  .affiche-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }
}

/* ---- Lien Facebook dans menu mobile ---- */
.menu-facebook-item {
  display: none;
}

@media (max-width: 768px) {
  .menu-facebook-item {
    display: block;
  }

  .menu-facebook-item a {
    color: #1877F2 !important;
    font-weight: bold;
  }
}

/* =============================== BOUTON FACEBOOK – CLIQUABLE 100% ================================ */

.menu-social {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  z-index: 1000;
  }

/*=============================== Texte ===============================*/
.facebook-text {
  color: #fff;
  font-size: 0.85rem;
  white-space: nowrap;
}

/*=============================== 🔑 Le lien prend toute la surface du bouton ===============================*/
.facebook-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  background-color: #1877f2;
  color: #fff;

  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;

  position: relative;
  z-index: 5;
}

/*=============================== 🔒 L’icône ne bloque jamais le clic ===============================*/
.facebook-btn svg {
  pointer-events: none;
  width: 14px;
  height: 14px;
}

/*=============================== Hover ===============================*/
.facebook-btn:hover {
  transform: scale(1.08);
}

/*=============================== GOOGLE MAP – INFOS PRATIQUES ================================*/

.map-container {
  padding: 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 420px; /* même hauteur que la section */
  border-radius: 0; /* reste carré comme le design */
}
/*=============================== GOOGLE MAP – CARTE FLOTTANTE ===============================*/


.map-card {
  position: relative; /* ⬅️ AJOUT OBLIGATOIRE */
  width: 85%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*=============================== Boutons MAP en overlay ===============================*/
.map-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 10px;
  z-index: 10;
}


.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*=============================== Boutons logos maps ===============================*/
.map-btn {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 10px;

  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}


/*=============================== Hover léger ===============================*/
.map-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.22);
}
/* ========================================= PHOTO4 – AGRANDISSEMENT VERTICAL RÉEL ========================================= */

.vertical-photo4 {
  width: 260px;
  height: 360px;

  background-image: url("../images/photo4.jpg");
  background-size: cover;
  background-position: center top;

  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -60%) scale(0.85);
  opacity: 0;

  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.35);

  pointer-events: none;

  z-index: 2000; /* 🔥 PLUS HAUT QUE LE GRUNGE */

  transition: transform 0.25s ease, opacity 0.2s ease;
}

.thumb-vertical:hover .vertical-photo4 {
  opacity: 1;
  transform: translate(-50%, -60%) scale(1);
}
/* ========================================= FESTIVAL2 – AGRANDISSEMENT VERTICAL RÉEL ========================================= */

.vertical-festival2 {
  width: 260px;
  height: 380px;

  background-image: url("../images/festival2.jpg");
  background-size: cover;
  background-position: center 05%;

  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -60%) scale(0.85);
  opacity: 0;

  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.35);

  pointer-events: none;
  z-index: 2000;

  transition: transform 0.25s ease, opacity 0.2s ease;
}

/*=============================== Hover spécifique FESTIVAL2 ===============================*/
.thumb-vertical:hover .vertical-festival2 {
  opacity: 1;
  transform: translate(-50%, -60%) scale(1);
}
/* =============================== QUI SOMMES-NOUS – POLICE JOSEPHSOPHIA ================================ */

.section--split .split-text h3 {
  font-family: 'JosephSophia', cursive;
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 18px;
}
/* =============================== MENU – MÉDIATOR CENTRÉ ENTRE ITEMS ================================ */

.menu ul {
  position: relative;
}

/*=============================== Chaque item ===============================*/
.menu ul li {
  position: relative;
}

/*=============================== Médiator AVANT chaque item sauf le premier ===============================*/
.menu > ul > li:not(:first-child)::before {
  content: "";
  position: absolute;

  left: -14px; /* moitié du gap (28px / 2) */
  top: 50%;
  transform: translate(-50%, -50%);

  width: 22px;
  height: 22px;

  background-image: url("../images/mediator.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 0.9;
}
body {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/*=============================== Sous-menu ouvert en mode mobile via JS ===============================*/
.sponsoring-item.open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* ============================== TITRES SPLIT – ACCENT COULEUR ================================ */
.split-text h3 {
  color: #d3531d;
  position: relative;
}

.split-text h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d3531d;
  margin-top: 8px;
  border-radius: 2px;
}
/* =============================== Ecriture du titre ambiance ================================ */
 .section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e55a1c; /* ton orange */
  margin-top: 8px;
}
/* =============================== Police titre ambiance ================================ */
 .ambiance-title {
  font-family: 'DangerZone', sans-serif !important;
}
/* =============================== Fond béton pour Qui sommes-nous et L'ambiance (tous les fonds blanc)===============================*/
.section--split {
  background:
    linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)),
    url('../images/betonblanc.jpg') repeat;
}
/* =============================== Police infos pratiques ================================ */
.infos-title {
  font-family: 'DangerZone', sans-serif !important;
  text-transform: uppercase; /* important pour cette police */
}
/* =============================== Suppression soulignement liens infos pratiques ================================ */
.section-title.no-underline {
  color: #000 !important;
}

.section-title.no-underline::after {
  content: none !important;
  display: none !important;
}
/* =============================== Paragraphe section hero ================================ */
.bio-page .section--hero p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
/* =============================== Centrer les titres des infos pratiques ================================ */
/* Titres Infos pratiques : centrés mais décalés à gauche */
.split-text p strong {
  display: block;
  text-align: left;
  margin: 0.8rem 0 0.0rem;
  position: relative;
  left: 0px;   /* ← ajuste cette valeur */
}
/* =============================== Haut-parleurs dans le header ================================ */

.header-speakers .speaker {
  position: absolute;
  bottom: 0;
  width: 100px;
  max-width: 25vw;
  z-index: 2;
}

.header-speakers .speaker img {
  width: 100%;
  display: block;
}

/* Ombre projetée au sol */
.header-speakers .speaker::after {
  content: "";
  position: absolute;
  left: 85%;
  bottom: 11px;
  transform: translateX(-50%);
  width: 250%;
  height: 32px;

  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.15) 65%,
    rgba(0,0,0,0.0) 80%
  );

  filter: blur(12px);
  z-index: -1;
}


.header-speakers .left {
  left: 60px;
}

.header-speakers .right {
  right: 60px;
  transform: scaleX(-1);
}
/* ================= Lampes du header ================= */

.header-lamps {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  pointer-events: none; /* décoratif */
}

.lamps-img {
  max-width: 120px; /* ajuste selon ton goût */
  width: 60%;
  opacity: 0.9;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
}
.title--lights{
  position: relative;
  display: inline-block;
  color: #000;                 /* ton noir actuel */
  text-shadow: 0 6px 0 rgba(0,0,0,0.15);
  animation: glowIn 1.2s ease-out both;
}

/* Balayage lumineux */
.title--lights::after{
  content: "";
  position: absolute;
  inset: -10% -30%;            /* déborde pour que le balayage démarre hors champ */
  transform: translateX(-60%) skewX(-20deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.0) 35%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.0) 65%,
    rgba(255,255,255,0) 100%
  );
  mix-blend-mode: screen;      /* effet lumière sur fond orange */
  opacity: 0;
  pointer-events: none;
  animation: shineOnce 1.1s ease-out .25s both;
}

/* Petit glow qui apparaît */
@keyframes glowIn{
  0%{
    filter: brightness(0.9);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
  60%{
    filter: brightness(1.1);
    text-shadow:
      0 0 18px rgba(255,255,255,0.25),
      0 0 30px rgba(255,200,120,0.25);
  }
  100%{
    filter: brightness(1);
    text-shadow:
      0 0 10px rgba(255,255,255,0.12),
      0 0 18px rgba(255,200,120,0.18);
  }
}

/* Balayage unique */
@keyframes shineOnce{
  0%   { opacity: 0; transform: translateX(-70%) skewX(-20deg); }
  10%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(70%)  skewX(-20deg); }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce){
  .title--lights,
  .title--lights::after{ animation: none; }
}


























