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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #929f8c;
  background: #fafafa;
  padding: 0;
}
.underline {
  text-decoration: underline;
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #5c615a;
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  padding: 18px 0;
  border-bottom: 3px solid #5c615a;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.8em;
  font-weight: 700;
  color: #ffd700;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.1em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  font-size: 1.2em;
  font-weight: 400;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: "Courier New", Courier, monospace;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

/* Bouton hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 20px;
    font-size: 1.1em;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    border-left: 3px solid #5c615a;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 1.1em;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero {
  padding: 320px 0 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  min-height: 100vh;
}

.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-image: url("./assets/PHOTO-2023-04-15-13-13-18.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.hero::before.hidden {
  opacity: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.countdown {
  font-size: 3.5em;
  font-weight: 700;
  font-family: "Orbitron", monospace;
  display: flex;
  gap: 10px;
  white-space: nowrap;
  justify-content: center;
}

.countdown span {
  display: inline-block;
  width: 1.2em;
  height: 1.4em;
  text-align: center;
  background: #929f8c;
  color: #fff;
  border-radius: 8px;
  line-height: 1.4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


/* Panneau d'aéroport */
.airport-board {
  margin: 200px auto;
  width: 100%;
  background: #929f8c;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #5c615a;
}

.board-title {
  font-family: "Orbitron", monospace;
  color: #fdfdfd;
  margin: 0;
  padding: 0;
  padding: 5px;
}

.board-title > p {
  font-size: 2em;
  line-height: 0.8em;
  padding-bottom: 12px;
  border-bottom: 2px solid #ffd700;
  max-width: 100px;
  padding-bottom: 20px;
  color: #cecdcd;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  letter-spacing: 0.1em;
}

.board-title > h1 {
  font-size: 3.5em;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  line-height: 1.2em;
}

.board-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: top;
  margin-bottom: 15px;
}

.board-row-full {
  display: grid;
  gap: 40px;
  align-items: top;
  margin-bottom: 15px;
  grid-template-columns: 1fr;
}

.board-row img {
  width: 100%;
  border-radius: 8px;
}

.board-row:last-child {
  margin-bottom: 0;
}

.plane-icon {
  width: 80px;
  height: 80px;
  background: #ffd700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.plane-icon svg {
  width: 50px;
  height: 50px;
  color: #929f8c;
  transform: rotate(-45deg);
}

.board-info {
  background: #5c615a;
  padding: 15px 20px;
  border-radius: 8px;
  border: 2px solid #464a44;
}

.board-label {
  font-family: "Orbitron", monospace;
  font-size: 1.4em;
  color: #ffd700;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
  margin-left: 7px;
  font-weight: 600;
}

.board-value {
  font-family: "Orbitron", monospace;
  font-size: 1.4em;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: left;
}

.board-value span {
  display: inline-block;
  padding: 0 8px;
  height: 1.4em;
  text-align: center;
  background: #929f8c;
  color: #fff;
  border-radius: 4px;
  line-height: 1.4em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}


@media (max-width: 1024px) {
  .hero,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 180px;
  }
}

@media (max-width: 768px) {
  .hero,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 3.5em;
  }

  .timeline {
    padding: 20px 0;
  }

  .timeline::before {
    left: 20px;
  }

  .plane-follower {
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .plane-follower svg {
    width: 50px;
    height: 50px;
  }

  .day-section {
    margin-bottom: 40px;
  }

  .day-title {
    font-size: 1.6em;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }

  .timeline-event {
    justify-content: flex-start !important;
    margin: 20px 0 20px 0 !important;
    min-height: auto;
    position: relative;
  }

  .timeline-event:nth-child(odd),
  .timeline-event:nth-child(even) {
    justify-content: flex-start !important;
  }

  .event-content {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    padding: 15px !important;
    position: relative;
  }

  .timeline-event:nth-child(odd) .event-content,
  .timeline-event:nth-child(even) .event-content {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .event-icon {
    position: absolute;
    right: 10px !important;
    top: 10px !important;
    left: auto !important;
    width: 60px !important;
    height: 60px !important;
    transform: none !important;
    margin: 5px;
  }

  .event-icon svg,
  .event-icon img {
    width: 38px;
    height: 38px;
  }

  .event-time {
    font-size: 1em;
    margin-bottom: 8px;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .event-title {
    font-size: 0.95em;
    margin-bottom: 6px;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .event-description {
    font-size: 0.82em;
    line-height: 1.5;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .timeline-event:nth-child(odd) .event-time,
  .timeline-event:nth-child(even) .event-time {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .timeline-event:nth-child(odd) .event-title,
  .timeline-event:nth-child(even) .event-title {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .timeline-event:nth-child(odd) .event-description,
  .timeline-event:nth-child(even) .event-description {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .countdown {
    font-size: 2.2em;
    margin-top: 100px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .countdown span {
    width: 1em;
    height: 1.3em;
    line-height: 1.3em;
  }

  .airport-board {
    margin-top: 130px;
    padding: 15px;
    margin-bottom: 100px;
  }

  .board-row {
    grid-template-columns: 45px 1fr;
    gap: 12px;
    margin-bottom: 10px;
  }

  .plane-icon {
    width: 45px;
    height: 45px;
  }

  .plane-icon svg {
    width: 28px;
    height: 28px;
  }

  .board-title > p {
    font-size: 1.2em;
    padding-bottom: 10px;
    max-width: 70px;
  }

  .board-title > h1 {
    font-size: 2em;
  }

  .board-info {
    padding: 10px 12px;
  }

  .board-label {
    font-size: 1em;
    margin-left: 3px;
  }

  .board-value {
    font-size: 0.95em;
    gap: 4px;
  }

  .board-value span {
    padding: 0 5px;
  }
}
.section {
  margin: 0 0 180px 0;
  padding: 0;
  scroll-margin-top: 80px;
}
.hero {
  scroll-margin-top: 80px;
}
.section h2 {
  font-size: 3.5em;
  margin-bottom: 40px;
  color: #fff;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #929f8c;
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #5c615a;
  text-align: center;
  position: relative;
  overflow: hidden;
}


/* Panneau aéroport pour les lieux */
.lieux-board {
  background: #929f8c;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #5c615a;
}

.lieux-board .board-row {
  margin-bottom: 40px;
}

.location-icon {
  width: 80px;
  height: 80px;
  background: #ffd700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.location-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0);
}

.lieux-board .board-title {
  font-family: "Orbitron", monospace;
  color: #fdfdfd;
  margin: 0;
  padding: 5px;
}

.lieux-title {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 3.5em !important;
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.1em !important;
  font-weight: 900 !important;
  position: relative;
  overflow: visible;
  text-align: left !important;
}

/* Timeline - Trajectoire d'avion */
.timeline {
  position: relative;
  padding: 40px 0;
  margin-top: -12vh;
}

/* Ligne centrale - Trajectoire d'avion en pointillés */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-image: repeating-linear-gradient(
    to bottom,
    #ffd700 0px,
    #ffd700 20px,
    transparent 20px,
    transparent 40px
  );
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Avion qui suit le scroll */
.plane-follower {
  position: sticky;
  top: 50vh;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
  transition: transform 0.3s ease;
}

.plane-follower svg {
  width: 100%;
  height: 100%;
  color: #ffd700;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 2px #5c615b) drop-shadow(0 0 2px #5c615b);
}

.plane-follower.scroll-up svg {
  transform: rotate(0deg);
}

.day-section {
  margin-bottom: 80px;
}
.day-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.day-title span {
  display: inline-block;
  min-width: 0.8em;
  height: auto;
  text-align: center;
  background: #929f8c;
  color: #fff;
  border-radius: 6px;
  line-height: 1.2em;
  padding: 0.15em 0.25em;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}


.timeline-event {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: center;
  min-height: 100px;
}

/* Alternance gauche/droite */
.timeline-event:nth-child(odd) {
  justify-content: flex-end;
}

.timeline-event:nth-child(even) {
  justify-content: flex-start;
}

.event-content {
  width: 45%;
  background: #929f8c;
  padding: 25px 30px;
  border-radius: 8px;
  border: 4px solid #5c615a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #5c615a;
}

.timeline-event.active .event-content {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  border-color: #555;
  transform: translateY(-5px);
}

.timeline-event:nth-child(odd) .event-content {
  text-align: right;
  margin-right: calc(5% + 80px);
}

.timeline-event:nth-child(even) .event-content {
  margin-left: calc(5% + 80px);
}

/* Icône centrale - Style aéroport */
.event-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: #ffd700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
  flex-shrink: 0;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.event-icon svg,
.event-icon img {
  width: 50px;
  height: 50px;
  color: #929f8c;
  filter: brightness(0);
}

.event-icon img[src*="ricard"] {
  filter: none;
  background: transparent;
  scale: 2;
  filter: grayscale(250);
  padding: 5px;
  border-radius: 8px;
}

.timeline-event.active .event-icon {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

.event-time {
  font-weight: bold;
  font-size: 1.6em;
  color: #ffd700;
  margin-bottom: 12px;
  font-family: "Orbitron", monospace;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.event-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Orbitron", monospace;
  letter-spacing: 0.05em;
}

.event-description {
  color: #ebfce4;
  font-size: 1.3em;
  line-height: 1.7;
  font-family: Arial, Helvetica, sans-serif;
}

.timeline-event:nth-child(odd) .event-description {
  width: 75%;
  margin-left: auto;
}

.timeline-event:nth-child(odd) .event-title {
  width: 75%;
  margin-left: auto;
}

.timeline-event:nth-child(even) .event-description {
  width: 75%;
}

.timeline-event:nth-child(even) .event-title {
  width: 75%;
}
.section#message {
  background: rgba(255, 255, 255, 0.85);
  padding: 80px 0;
  margin: 180px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

#message h2,
.message-quote {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

#message h2 {
  margin-bottom: 60px;
}

.message-quote {
  font-size: 1.3em;
  font-style: normal;
  line-height: 1.9;
  color: #929f8c;
  margin-bottom: 60px;
  font-family: Georgia, serif;
}

.message-quote p {
  margin-bottom: 20px;
}

.message-quote strong {
  font-weight: 700;
  color: #5c615b;
}

.message-quote ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.message-quote li {
  margin: 20px 0;
  padding-left: 30px;
  line-height: 1.8;
  position: relative;
}

.message-quote li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #666;
  font-size: 1.2em;
}

/* Plan du domaine */
.venue-plan {
  margin: 80px auto 0;
  max-width: 1000px;
  padding: 0 60px;
  text-align: center;
}

.venue-plan h3 {
  font-size: 1.8em;
  margin-bottom: 40px;
  color: #929f8c;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.venue-plan img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Grid des lieux - Layout en colonnes CSS */
.venue-grid {
  column-count: 3;
  column-gap: 25px;
  margin: 60px 0;
}

@media (max-width: 1200px) {
  .venue-grid {
    column-count: 2;
  }
}

.venue-card {
  background: #929f8c;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 3px solid #5c615a;
  break-inside: avoid;
  margin-bottom: 25px;
  display: inline-block;
  width: 100%;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #555;
}

.venue-card.surprise {
  background: #929f8c;
  border: 3px solid #5c615a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.venue-card.surprise:hover {
  border-color: #555;
}

.venue-card-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #5c615b;
}

.venue-card-images.single {
  grid-template-columns: 1fr;
}

.venue-card-images.two-images {
  grid-template-columns: repeat(2, 1fr);
}

.venue-card-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.venue-card-images img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.venue-card-content {
  padding: 30px;
}

.venue-card-content:has(h3) {
  padding: 0;
}

.venue-card-content:has(+ .venue-card-images) {
  padding: 0;
}

.venue-card-images + .venue-card-content {
  padding: 30px;
}

.venue-card-content h3 {
  color: #ccc;
  font-size: 1.8em;
  margin: 0;
  padding: 25px 30px;
  font-weight: 900;
  font-family: "Orbitron", monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #5c615b;
  text-align: center;
  border-bottom: 3px solid #5c615a;
}

.venue-card-content p {
  line-height: 1.8;
  color: #595454;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
}

.venue-card-content p strong {
  color: #fff;
}

/* Comment venir - Section séparée */
.section.venue-access-section {
  background: rgba(255, 255, 255, 0.85);
  padding: 80px 0 100px 0;
  margin-top: 180px;
  margin-bottom: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.venue-access-section h2 {
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 60px;
}

.access-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

.address {
  text-align: left;
}

.address p {
  line-height: 2;
  color: #5c615a;
  margin: 8px 0;
  font-size: 1.4em;
}

.address p strong {
  color: #929f8c;
  font-size: 1.5em;
  display: block;
  margin-bottom: 15px;
  font-family: "Courier New", Courier, monospace;
}

.map-link {
  text-align: center;
}

.btn-map {
  display: inline-block;
  padding: 18px 40px;
  background: #929f8c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid #5c615a;
  font-family: "Courier New", Courier, monospace;
}

.btn-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #5c615b;
  border-color: #929f8c;
}

@media (max-width: 768px) {
  /* Section Message */
  .section#message {
    padding: 40px 0;
    margin: 100px 0;
    left: 50%;
    right: 50%;
    margin-left: calc(-50vw);
    margin-right: calc(-50vw - 20px);
  }

  #message h2,
  .message-quote,
  .rules {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #message h2 {
    margin: 0px 20px 30px 20px;
    font-size: 1.7em;
  }

  .message-quote {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .message-quote p {
    margin-bottom: 15px;
  }

  .message-quote ul {
    margin-top: 15px;
    padding-left: 20px;
  }

  .message-quote li {
    font-size: 0.95em;
    line-height: 1.7;
    margin: 10px 0;
  }

  .rules p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .rules li {
    font-size: 1em;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 20px;
  }

  /* Section Lieux */
  .lieux-board {
    padding: 15px;
  }

  .lieux-board .board-row {
    grid-template-columns: 45px 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .location-icon {
    width: 45px;
    height: 45px;
  }

  .location-icon img {
    width: 28px;
    height: 28px;
  }

  .lieux-title {
    font-size: 2em !important;
  }

  .venue-grid {
    column-count: 1;
    margin: 30px 0;
  }

  .venue-card-content {
    padding: 20px;
  }

  .venue-card-content:has(h3) {
    padding: 0;
  }

  .venue-card-content:has(+ .venue-card-images) {
    padding: 0;
  }

  .venue-card-images + .venue-card-content {
    padding: 20px;
  }

  .venue-card-content h3 {
    font-size: 1.1em;
    padding: 20px;
  }

  .venue-card-content p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .venue-card-images {
    grid-template-columns: 1fr;
  }

  .venue-card-images img {
    height: 250px;
  }

  .venue-card-images.two-images {
    grid-template-columns: 1fr;
  }

  /* Section Comment venir */
  .section.venue-access-section {
    padding: 40px 0 60px 0;
    margin-top: 100px;
    left: 50%;
    right: 50%;
    margin-left: calc(-50vw);
    margin-right: calc(-50vw - 20px);
    margin-bottom: 0;
  }

  .venue-access-section h2 {
    padding-left: 20px;
    padding-right: 20px;

    margin: 0px 20px 30px 20px;
    font-size: 1.7em;
  }

  .access-info {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .address p {
    font-size: 1em;
    line-height: 1.7;
    margin: 6px 0;
  }

  .address p strong {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .btn-map {
    padding: 14px 30px;
    font-size: 1em;
  }

  .venue-plan {
    margin: 60px auto 0;
    padding: 0 20px;
  }

  .venue-plan h3 {
    font-size: 1.3em;
    margin-bottom: 25px;
  }
}

/* Lightbox pour images */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3em;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ffd700;
}
