:root {
	--grav-white: #FCF4E1;
	--text-dark: #053F71;
	--text-light: #fff;
	--bg-dark: #053F71;
}

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

body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--bg-dark);
	color: var(--text-light);
	min-height: 100vh;
}

    /* ----- HEADER ----- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 100px;
      background-color: #FCF4E1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      z-index: 20;
    }

.logo {
	width: 100px;
	height: 100px;
	background-size: 100px;
	cursor: pointer;
}

/* ----- SLOGAN ----- */
.spirit{
	padding-top:20px;
}

.spirit-text {
	color: var(--bg-dark);
	font-family: 'Merriweather', serif;
	font-style: italic;
	font-size: 1.6em;
}

@media (orientation: portrait){
	.spirit-text{
		font-size: 1em;
	}
}

/* ----- MENU HAMBURGER ----- */

/* input checkbox pour gérer l’ouverture du menu sans JS */
#nav-toggle {
	display: none;
}

.hamburger {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
	content: "";
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text-dark);
	transition: transform 0.2s ease, opacity 0.2s ease;
	border-radius: 999px;
	position: relative;
}

.hamburger span::before {
	position: absolute;
	top: -5px;
}

.hamburger span::after {
	position: absolute;
	top: 5px;
}

/* effet croix quand le menu est ouvert */
#nav-toggle:checked + label .hamburger span {
	transform: rotate(45deg);
}
#nav-toggle:checked + label .hamburger span::before {
	transform: rotate(-90deg);
	top: 0;
}
#nav-toggle:checked + label .hamburger span::after {
	opacity: 0;
}

/* panneau du menu déroulant */
.nav-panel {
	position: fixed;
	top: 70px;
	width: 260px;
	right: 0;
	/*left: 0;*/
	background: rgba(5,63,113,.9);
	color: var(--text-light);
	padding: 12px 24px 20px;
	display: none;
	z-index: 15;
	text-align: center;
	border-radius: 10px 0px 0px 10px;
}

.nav-panel a {
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--text-light);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	font-size: 0.95rem;
}

#nav-toggle:checked ~ .nav-panel {
	display: block;
}

    /* ----- HERO ----- */
    .hero {
      position: relative;
      min-height: 100vh;
      padding-top: 100px; /* pour ne pas passer sous le header */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
    }
	
@media (orientation: portrait){
	.hero{
		background-position: center top;
	}
}

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
        center/cover no-repeat;
      z-index: -2;
      transform: scale(1.03);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.9) 100%
      );
      z-index: -1;
    }

    .hero-date {
      font-size: 1.2rem;
	  font-family: 'Inter', sans-serif;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0.9;
    }
	
.hero-logo-text {
	position:relative;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	width: 100%;
	height:100px;
	background-size: 180px;
	background-repeat: no-repeat;
	background-position: center;
}

    .hero-title {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
	  font-family: 'Anton', sans-serif;
	  letter-spacing: 0.04em;
      margin-bottom: 20px;
    }
	
	.hero2-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
	  font-family: 'Anton', sans-serif;
	  letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .hero-subtitle {
      font-size: 1.2rem;
	  font-family: 'Inter', sans-serif;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .hero-countdown {
      font-size: clamp(1.6rem, 4vw, 2.3rem);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .hero-label {
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-bottom: 40px;
    }

    /* ----- BOUTONS CATÉGORIE ----- */
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 80%;
	  margin-left:10%;
	  margin-right:10%;
      padding-bottom: 16px;
    }

    .hero-buttons-row {
      display: flex;
      gap: 16px;
    }

    .hero-btn {
      flex: 1;
      background: #ffffff;
      color: #000;
      padding: 14px 10px;
      text-decoration: none;
      text-align: center;
      font-weight: 500;
      font-size: 1rem;
	  font-family: 'Inter', sans-serif;
	  text-transform: uppercase;
      border-radius: 2px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    }

    @media (max-width: 640px) {
      .hero-buttons-row {
        flex-direction: column;
      }
    }

.home-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.home_title{
	background: rgba(5,63,113,.6);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 10px;
	overflow: hidden;
	font-family: 'Anton', sans-serif;
	padding: 30px;
}

.lang-switch {
	display: flex;
	gap: 8px;
	padding-top: 15px;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.lang {
	width:30px;
	display: block;
	background-size: cover;
	background-position: center;
}
.lang:hover {
	transform: scale(1.1);
}

/* ----- PAGE PROGRAMME ----- */
.day-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 10px;
}

.day-title {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.08em;
	font-size: clamp(1.6rem, 3vw, 2rem);
}

.day-card{
  background: rgba(5,63,113,.6);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  overflow: hidden;
}

.day-head{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.day-kicker{
  color: rgba(255,255,255,.8);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 4px;
  padding-left: 20px;
  padding-top: 4px;
}
.day-head h2{ margin: 0; font-size: 1.2rem; }
.day-date{
  font-size: .9rem;
  padding-right: 20px;
  padding-top: 4px;
  color: rgba(255,255,255,.8);
}

.schedule{ padding: 8px 10px 12px; }
.item{
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.item:last-child{ border-bottom: none; }

.time{
  font-weight: 700;
  letter-spacing: .02em;
}
.title{ font-weight: 600; }
.meta{ color: rgba(255,255,255,.7); font-size: .9rem; }

/* Responsive */
@media (max-width: 980px){
  .day-grid{ grid-template-columns: 1fr; }
}

/* ===== CAROUSEL PARCOURS ===== */
.carousel {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slides {
	display: flex;
	height: 100%;
	transition: transform .5s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.85)),
    var(--bg) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.slide-content {
  text-align: center;
  max-width: 600px;
  padding: 20px;
  color: #fff;
  border-radius: 10px;
  background: rgba(5,63,113,.6);
}

.slide-img {
  max-width: 200px;
  background-size: cover;
  position: relative;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  opacity: .85;
}

.slide h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 10px 0;
}

.slide p {
  opacity: .9;
  margin-bottom: 24px;
}

.slide-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

/* NAVIGATION */
.carousel-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.nav-btn {
  pointer-events: auto;
  background: rgba(0,0,0,0);
  border: 0px solid #fff;
  color: #fff;
  font-size: 4rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 16px;
}

/* DOTS */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* MOBILE */
@media (max-width: 700px) {
  .nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }
}

/* ===== PARTNERS ===== */
.partners {
	padding: 60px 16px;
	background: #0b0b0b;
}

.partners-title {
	text-align: center;
	margin-bottom: 32px;
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.08em;
	font-size: clamp(1.6rem, 3vw, 2rem);
}

.partners-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	flex-direction: column;
}

@media (orientation: portrait) {
	.partners-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.partner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 18px 14px;
	background: rgba(255,255,255,.8);
	border: 1px solid rgba(255,255,255,.8);
	border-radius: 10px;
	transition: transform .2s ease, box-shadow .2s ease;
	cursor: pointer;
}

.partner img {
	max-width: 250px;
	max-height: 100px;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: .9;
}

.partner figcaption {
	font-size: 1.4rem;
	text-align: center;
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.04em;
	color: var(--bg-dark);
}

/* ===== PAGE / INFOS PRATIQUES ===== */
.page { 
	padding-top: 70px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
}

.page-hero.compact {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-top: 60px;
}
.page-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 16px 22px;
  background: rgba(5,63,113,.6);
}
.page-eyebrow{
  color: rgba(255,255,255,.7);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 6px;
}
.page-hero h1{
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  margin: 0 0 6px;
}
.page-sub{ color: rgba(255,255,255,.75); }

.content{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 16px 64px;
}

.info-grid{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  padding-top: 20px;
}

.info-card{
  background: rgba(5,63,113,.8);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 16px;
}

.info-card h2{ margin: 0 0 6px; }
.muted{ color: rgba(255,255,255,.72); margin-bottom: 12px; }

.kv{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.k{ color: rgba(255,255,255,.65); font-size: .9rem; }
.v{ color: rgba(255,255,255,.92); }

.actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #fff;
  color: #000;
  background: #fff;
}
.btn:hover{ opacity: .92; }

.btn.outline{
  background: transparent;
  color: #fff;
}

.bullets{ display: grid; gap: 10px; }
.bullet{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 10px;
}
.bullet-title{ font-weight: 700; margin-bottom: 4px; }
.bullet-text{ color: rgba(255,255,255,.85); }

.parking-list{ display: grid; gap: 10px; margin-top: 6px; }
.parking{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 10px;
}
.parking-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tag{
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
}

.lodging-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.lodging{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255,255,255,.02);
}
.lodging-name{ font-weight: 700; margin-bottom: 4px; }
.lodging-meta{ color: rgba(255,255,255,.75); font-size: .9rem; }
.link{
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .9;
}
.note{
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 900px){
  .info-grid{ grid-template-columns: 1fr; }
  .lodging-grid{ grid-template-columns: 1fr; }
}