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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #FFF9F5;
  color: #1a1a1a;
}

body.no-scroll {
  overflow: hidden;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: transparent;
  z-index: 1000;
}

.logo {
  text-decoration: none;
}

.logo img {
  height: 120px;
  width: auto;
}

.nav {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 4rem;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.2rem;
}

.nav a:hover, 
.nav a.active {
  color: #FF6B2C;
}

.nav-socials {
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.3);
}

.nav-socials a {
  color: white;
  transition: color 0.3s ease;
}

.nav-socials a:hover {
  color: #FF6B2C;
}
/* Menu hamburger (caché par défaut sur desktop) */
.menu-toggle {
  display: none;
}

/* Menu mobile ouvert */
.nav-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  padding: 6rem 2rem 2rem;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.nav-open .nav-socials {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.menu-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-open span:nth-child(2) {
  opacity: 0;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  margin-top: 100px;
}

.hero-location {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #FF6B2C;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: white;
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-top: 1rem;
}

.hero-date {
  font-size: 1.75rem;
  color: rgba(255,255,255,0.9);
  margin-top: 0rem;
}

/* Countdown Circulaire */
.countdown {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin: 3rem 0;
}

.countdown-item {
  position: relative;
  width: 180px;
  height: 180px;
}

.countdown-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.countdown-bg {
  fill: rgba(0,0,0,0.5);
  stroke: white;
  stroke-width: 5;
}

.countdown-progress {
  fill: none;
  stroke: #FF6B2C;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s ease;
}

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

.countdown-value span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: white;
  display: block;
  line-height: 1;
}

.countdown-value small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  background: #FF6B2C;
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transition: 0.3s;
  border: 2px solid #FF6B2C;
  border-radius: 2rem;
}

.btn:hover {
  background: #e55a1f;
  border-color: #e55a1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,44,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #FF6B2C;
  border-color: white;
}

/* Section Programme */
.programme {
  padding: 5rem 5%;
  text-align: center;
  background-color: #FFF9F5;
}

.programme h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.programme-subtitle {
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 3rem;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.programme-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
  background: white;
}

.programme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.programme-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Placeholders - remplace par tes images plus tard */
.programme-card-img.concerts {
  background-image: url('images/concerts.jpeg');
  background-size: cover;
  background-position: center;
}

.programme-card-img.guinguette {
  background-image: url('images/guinguette.jpeg');
  background-size: cover;
  background-position: center;
}

.programme-card-img.corrida {
  background-image: url('images/corrida.png');
  background-size: cover;
  background-position: center;
}
.programme-card-img.bodega {
  background-image: url('images/bodega.jpeg');
  background-size: cover;
  background-position: center;
}

.programme-card-content {
  padding: 1.5rem;
}

.programme-card-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.programme-card-content p {
  font-size: 0.95rem;
  color: #4a4a4a;
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,107,44,0.5);
}

.back-to-top img {
  width: 45px;
  height: auto;
}

/* Section Vidéo */
.video-section {
  padding: 5rem 5%;
  text-align: center;
  background-color: #1a1a1a;
}

.video-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 0.5rem;
}

.video-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  border-radius: 1rem;
  min-height: 500px;
  background: #000;
}

/* Section À propos */
.about {
  padding: 2rem 5%;
  background-color: #FFF9F5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.about-content {
  max-width: 800px;
  text-align: center;
  position: relative;
}

.about h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.about h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #FF6B2C;
  margin: 1rem auto 1.5rem;
}

.about p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.about-highlight {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FF6B2C;
  margin-top: 1rem;
}

.ambiances {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  max-width: 800px;
}

.ambiance-card {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.ambiance-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #FF6B2C;
  margin-bottom: 0.5rem;
}

.ambiance-card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
  background: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: #FF6B2C;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-featured {
  border: 3px solid #FF6B2C;
  transform: scale(1.1);
}

.stat-featured:hover {
  transform: scale(1.15);
}

/* Section Partenaires */
.partenaires {
  padding: 5rem 0;
  background-color: #1a1a1a;
  text-align: center;
  overflow: hidden;
}

.partenaires h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 0.5rem;
}

.partenaires-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.logos-carousel {
  width: 100%;
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 3rem;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.logos-track img {
  height: 100px;
  min-width: 250px;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: white;
  padding: -30px;
  border-radius: 12px;
}
.logos-track img:hover {
  opacity: 1;
}
.btn-partenaires {
  margin-top: 3rem;
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-partenaires:hover {
  background: white;
  color: #1a1a1a;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Footer */
.footer {
  background-color: #FFF9F5;
  color: #1a1a1a;
  padding: 4rem 5% 2rem;
  border-top: 3px solid #FF6B2C;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #4a4a4a;
  max-width: 250px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #FF6B2C;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #FF6B2C;
}

.footer-col p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FF6B2C;
}

/* ==================== SECTION TÊTE D'AFFICHE ==================== */

.headliner {
  background: #FFF9F5;
  padding: 2rem 5% 5rem;
  overflow: hidden;
  border-top: 3px solid #FF6B2C;
  border-bottom: 3px solid #FF6B2C;
}

.headliner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
}

.headliner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

.headliner-info {
  flex: 1;
  padding: 3rem;
}

.headliner-exclusive {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FF6B2C;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.headliner-badge {
  display: inline-block;
  background: #FF6B2C;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(255, 107, 44, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 44, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 107, 44, 0.8);
  }
}

.headliner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.headliner-origin {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.headliner-desc {
  font-size: 1.15rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.headliner-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #FF6B2C;
  margin-bottom: 2rem;
}

.headliner-buttons {
  display: flex;
  gap: 1rem;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
}

.btn-outline-dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: white;
}

.headliner-image {
  flex: 1.2;
  overflow: hidden;
}

.headliner-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.headliner-image:hover img {
  transform: scale(1.05);
}

/* Responsive Headliner */
@media (max-width: 900px) {
  .headliner-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  .headliner-content {
    flex-direction: column-reverse;
  }
  
  .headliner-info {
    padding: 2rem;
    text-align: center;
  }
  
  .headliner h3 {
    font-size: 3rem;
  }
  
  .headliner-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .headliner-image img {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .headliner {
    padding: 2rem 5% 3rem;
  }
  
  .headliner-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .headliner-info {
    padding: 1.5rem;
  }
  
  .headliner h3 {
    font-size: 2.3rem;
  }
  
  .headliner-desc {
    font-size: 1rem;
  }
  
  .headliner-date {
    font-size: 1.2rem;
  }
  
  .headliner-buttons {
    flex-direction: column;
  }
  
  .headliner-image img {
    min-height: 250px;
  }
}

/* ==================== RESPONSIVE ==================== */

/* Tablette */
@media (max-width: 1024px) {
  .programme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .countdown {
    gap: 1.5rem;
  }
  
  .countdown-item {
    width: 120px;
    height: 120px;
  }
  
  .countdown-value span {
    font-size: 2.5rem;
  }
  
  h1 {
    font-size: 5rem;
  }
}

/* Petit tablette / Grand mobile */
@media (max-width: 900px) {
  .hero-bg {
    background-attachment: scroll;
    background-position: center top;
  }
  /* Header */
  .nav {
    display: none;
  }
  
  .header {
    padding: 1rem 5%;
  }
  
  .logo img {
    height: 80px;
  }
  
  /* Menu hamburger */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  /* Hero */
  h1 {
    font-size: 3.5rem;
  }
  
  .hero-location {
    font-size: 1rem;
  }
  
  .hero-date {
    font-size: 1.2rem;
  }
  
  .countdown {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .countdown-item {
    width: 100px;
    height: 100px;
  }
  
  .countdown-value span {
    font-size: 2rem;
  }
  
  .countdown-value small {
    font-size: 0.7rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  /* Programme */
  .programme h2,
  .video-section h2,
  .about h2,
  .partenaires h2 {
    font-size: 2.5rem;
  }
  
  .programme-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .programme-card {
    height: 250px;
  }
  
  .programme-card-content h3 {
    font-size: 1.5rem;
  }
  
  .programme-card-content p {
    font-size: 0.85rem;
  }
  
  /* Vidéo */
  .video-section {
    padding: 3rem 5%;
  }
  
  /* À propos */
  .about {
    padding: 2rem 5%;
  }
  
  .ambiances {
    flex-direction: column;
    gap: 1rem;
  }
  
  .ambiance-card {
    padding: 1.2rem;
  }
  
  .ambiance-card h3 {
    font-size: 1.5rem;
  }
  
  .about-highlight {
    font-size: 1.1rem;
    text-align: center;
  }
  
  /* Partenaires */
  .partenaires {
    padding: 3rem 0;
  }
  
  .logos-track img {
    height: 60px;
    min-width: 150px;
    padding: 15px 20px;
  }
  
  .btn-partenaires {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-col {
    text-align: center;
    align-items: center;
  }
  
  .footer-tagline {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2.8rem;
  }
  
  .hero-content {
    padding: 1rem;
    margin-top: 80px;
  }
  
  .countdown-item {
    width: 70px;
    height: 70px;
  }
  
  .countdown-value span {
    font-size: 1.5rem;
  }
  
  .countdown-value small {
    font-size: 0.6rem;
  }
  
  .countdown-bg,
  .countdown-progress {
    stroke-width: 4;
  }
  
  .programme-grid {
    grid-template-columns: 1fr;
  }
  
.programme-card {
    height: 200px;
    position: relative;
  }

.programme-card-content {
    opacity: 1 !important;
    padding: 1rem;
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
  }

  .programme-card-content h3 {
    font-size: 1.3rem;
    color: white !important;
  }

  .programme-card-content p {
    color: white !important;
    display: block !important;
  }

  .programme-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%) !important;
  }

  .programme-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .programme h2,
  .video-section h2,
  .about h2,
  .partenaires h2 {
    font-size: 2rem;
  }
  
  .about p {
    font-size: 1rem;
  }
  
  .ambiance-card h3 {
    font-size: 1.3rem;
  }
  
  .logos-track img {
    height: 50px;
    min-width: 120px;
    padding: 10px 15px;
  }
  
  .footer {
    padding: 2rem 5% 1rem;
  }
  
  .footer-logo img {
    height: 60px;
  }
  
  .footer-col h4 {
    font-size: 1.2rem;
  }
}



















/* ==================== PAGE PROGRAMME ==================== */

/* Header solid (pour pages internes) */
.header-solid {
  background: rgba(0,0,0,0.9);
  position: fixed;
}

/* Hero compact pour pages internes */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.page-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.page-hero-content p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
}

/* Section Programme */
.programme-page {
  padding: 4rem 5%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Onglets */
.programme-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: white;
  border: 2px solid #e0e0e0;
  padding: 1rem 2rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 150px;
}

.tab-btn:hover {
  border-color: #FF6B2C;
}

.tab-btn.active {
  background: #FF6B2C;
  border-color: #FF6B2C;
}

.tab-btn .tab-day {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.tab-btn .tab-date {
  display: block;
  font-size: 0.9rem;
  color: #666;
  transition: color 0.3s ease;
}

.tab-btn.active .tab-day,
.tab-btn.active .tab-date {
  color: white;
}

/* Contenu des onglets */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intro du jour */
.day-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.day-intro h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.day-intro p {
  font-size: 1.1rem;
  color: #666;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 100px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #FF6B2C, #FFA366);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 25px;
  width: 16px;
  height: 16px;
  background: white;
  border: 4px solid #FF6B2C;
  border-radius: 50%;
  z-index: 1;
}

.timeline-highlight::before {
  width: 20px;
  height: 20px;
  background: #FF6B2C;
  box-shadow: 0 0 20px rgba(255,107,44,0.5);
}

.timeline-time {
  position: absolute;
  left: -100px;
  top: 20px;
  width: 60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #FF6B2C;
  text-align: right;
}

.timeline-card {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.timeline-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.timeline-highlight .timeline-card {
  border: 2px solid #FF6B2C;
  background: linear-gradient(135deg, #FFF9F5 0%, white 100%);
}

.timeline-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin: 0.5rem 0;
}

.timeline-card p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.timeline-duration {
  font-weight: 600;
  color: #FF6B2C !important;
  font-size: 0.95rem;
  margin-bottom: 0.5rem !important;
}

.timeline-origin {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #888;
}

/* Badges */
.timeline-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
  margin-bottom: 0.3rem;
}

.badge-guinguette {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge-concert {
  background: #FFF3E0;
  color: #E65100;
}

.badge-dj {
  background: #E3F2FD;
  color: #1565C0;
}

.badge-headliner {
  background: #FF6B2C;
  color: white;
}

.badge-sport {
  background: #FCE4EC;
  color: #C2185B;
}

/* CTA */
.programme-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  border-radius: 1.5rem;
}

.programme-cta p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.programme-cta .btn {
  font-size: 1.3rem;
  padding: 1rem 3rem;
}

/* ==================== RESPONSIVE PROGRAMME ==================== */

@media (max-width: 900px) {
  .page-hero-content h1 {
    font-size: 3.5rem;
  }
  
  .programme-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .timeline {
    padding-left: 80px;
  }
  
  .timeline::before {
    left: 50px;
  }
  
  .timeline-time {
    left: -80px;
    font-size: 1.1rem;
  }
  
  .timeline-item::before {
    left: -34px;
  }
  
  .day-intro h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .page-hero-content p {
    font-size: 1rem;
  }
  
  .programme-page {
    padding: 2rem 4%;
  }
  
  .timeline {
    padding-left: 0;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-time {
    position: relative;
    left: 0;
    top: 0;
    text-align: left;
    margin-bottom: 0.5rem;
    margin-left: 30px;
  }
  
  .timeline-item::before {
    left: 2px;
    top: 5px;
    width: 12px;
    height: 12px;
  }
  
  .timeline-card {
    margin-left: 30px;
    padding: 1.2rem;
  }
  
  .timeline-card h3 {
    font-size: 1.5rem;
  }
  
  .timeline-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }
  
  .day-intro h2 {
    font-size: 1.6rem;
  }
  
  .programme-cta {
    padding: 2rem 1.5rem;
  }
  
  .programme-cta p {
    font-size: 1.1rem;
  }
}
/* Fix header pour pages internes */
.header-solid .nav {
  padding-bottom: 0;
  align-items: center;
}

.header-solid .logo img {
  height: 80px;
}

/* Images artistes dans timeline */
.timeline-card-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #FF6B2C;
}

.timeline-highlight .timeline-card-img {
  width: 170px;
  height: 170px;
  border-width: 4px;
}

/* Têtes d'affiche en image large */
.timeline-highlight .timeline-card-img {
  width: 100%;
  height: 300px;
  border-radius: 0.5rem;
  object-position: top;
}



















/* ==================== PAGE BILLETTERIE ==================== */

/* Mini Hero (petit bandeau) */
.mini-hero {
  background: #1a1a1a;
  padding-top: 160px;
  padding-bottom: 2rem;
  text-align: center;
}

.mini-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  margin: 0;
}

/* Contenu billetterie */
.billetterie-section {
  padding: 4rem 5%;
  max-width: 800px;
  margin: 0 auto;
}

.billetterie-coming-soon {
  text-align: center;
  background: white;
  padding: 4rem 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.coming-soon-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.billetterie-coming-soon h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.billetterie-coming-soon > p {
  font-size: 1.15rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.coming-soon-date {
  background: linear-gradient(135deg, #FF6B2C 0%, #ff8f5a 100%);
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  margin-bottom: 2rem;
}

.coming-soon-date span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.1em;
}

.billetterie-coming-soon .btn {
  margin-bottom: 2.5rem;
}

.social-reminder {
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.social-reminder > p {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  background: #f5f5f5;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #FF6B2C;
  color: white;
}

.social-link svg {
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: white;
}

/* Responsive billetterie */
@media (max-width: 480px) {
  .mini-hero {
    padding-top: 120px;
    padding-bottom: 2rem;
  }
  
  .mini-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .billetterie-coming-soon {
    padding: 2.5rem 1.5rem;
  }
  
  .coming-soon-icon {
    font-size: 3.5rem;
  }
  
  .billetterie-coming-soon h2 {
    font-size: 2rem;
  }
  
  .coming-soon-date {
    padding: 0.8rem 1.5rem;
  }
  
  .coming-soon-date span {
    font-size: 1.2rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}



















/* ==================== PAGE INFOS PRATIQUES ==================== */

/* Section Accès (fond clair) - NOUVELLE VERSION */
.infos-acces {
  padding: 4rem 5%;
  background: #FFF9F5;
}

.acces-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.acces-image {
  flex: 1;
}

.acces-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.acces-infos {
  flex: 1;
}

.acces-infos h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.acces-infos .infos-adresse {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.acces-infos .infos-lieu {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.itineraires-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.itineraires-vertical .itineraire {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid #FF6B2C;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.itineraires-vertical .itineraire h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #FF6B2C;
  margin-bottom: 0.8rem;
}

.itineraires-vertical .itineraire p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}

/* Section Allemand (fond BLANC) */
.infos-allemand {
  padding: 4rem 5%;
  background: #FFF9F5;
  text-align: center;
}

.infos-allemand h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.infos-allemand-image img {
  max-width: 550px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Parking (fond sombre) */
.infos-parking {
  padding: 4rem 5%;
  background: #1a1a1a;
  text-align: center;
}

.infos-parking h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
}

.parking-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.parking-item {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 140px;
}

.parking-icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.parking-item strong {
  color: white;
}

.parking-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Section Camping (fond clair) */
.infos-camping {
  padding: 4rem 5%;
  background: #FFF9F5;
}

.camping-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.camping-texte {
  flex: 1;
}

.camping-texte h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.camping-texte p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.camping-image {
  flex: 1;
}

.camping-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Plan (fond sombre) */
.infos-plan {
  padding: 4rem 5%;
  background: #1a1a1a;
  text-align: center;
}

.infos-plan h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
}

.infos-plan-image img {
  max-width: 550px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Section Horaires & Dresscode (fond clair) */
.infos-horaires {
  padding: 4rem 5%;
  background: #FFF9F5;
}

.infos-horaires-grid {
  display: flex;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.infos-horaires-block,
.infos-dresscode-block {
  flex: 1;
  text-align: center;
}

.infos-horaires-block h2,
.infos-dresscode-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.horaires-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.horaire-item {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horaire-jour {
  color: #1a1a1a;
  font-weight: 500;
}

.horaire-heure {
  color: #FF6B2C;
  font-weight: 600;
}

/* Dresscode avec cartes images */
.dresscode-visuel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
}

.dresscode-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 150px;
}

.dresscode-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.dresscode-card span {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 500;
}

.dresscode-plus {
  font-size: 2.5rem;
  color: #FF6B2C;
  font-weight: bold;
  align-self: center;
}

.dresscode-note {
  color: #666;
  font-style: italic;
  margin-top: 1.5rem;
}

/* Section Billetterie (fond sombre) */
.infos-billetterie {
  padding: 4rem 5%;
  background: #1a1a1a;
  text-align: center;
}

.infos-billetterie h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
}

.billetterie-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.billetterie-item {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 160px;
}

.billetterie-icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.billetterie-item strong {
  color: white;
}

.billetterie-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Section Restauration (fond clair) */
.infos-restauration {
  padding: 4rem 5%;
  background: #FFF9F5;
  text-align: center;
}

.infos-restauration h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.restauration-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.restauration-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.restauration-items span {
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  color: #1a1a1a;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.paiement-info {
  color: #4CAF50;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Section Règlement (fond sombre) */
.infos-reglement {
  padding: 4rem 5%;
  background: #1a1a1a;
  text-align: center;
}

.infos-reglement h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
}

.reglement-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.reglement-item {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.reglement-item.interdit {
  background: #FFEBEE;
  color: #C62828;
}

.reglement-item.ok {
  background: #E3F2FD;
  color: #1565C0;
}

/* Section Pratiques (fond clair) */
.infos-pratiques {
  padding: 4rem 5%;
  background: #FFF9F5;
  text-align: center;
}

.infos-pratiques h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.pratiques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pratique-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.pratique-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pratique-card strong {
  color: #1a1a1a;
  font-size: 0.95rem;
}

.pratique-card span:last-child {
  color: #666;
  font-size: 0.85rem;
}

/* Section Corrida (fond sombre) */
.infos-corrida {
  padding: 4rem 5%;
  background: #1a1a1a;
  text-align: center;
}

.infos-corrida h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
}

.corrida-infos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.corrida-item {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.corrida-item strong {
  color: #FF6B2C;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
}

.corrida-item span {
  color: white;
}

/* Section FAQ (fond clair) */
.infos-faq {
  padding: 4rem 5%;
  background: #FFF9F5;
}

.infos-faq h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: center;
}

.infos-faq .faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.infos-faq .faq-item {
  margin-bottom: 0.8rem;
}

.infos-faq .faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.infos-faq .faq-question:hover {
  background: #FF6B2C;
  color: white;
}

.infos-faq .faq-toggle {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.infos-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.infos-faq .faq-item.active .faq-question {
  background: #FF6B2C;
  color: white;
  border-radius: 0.5rem 0.5rem 0 0;
}

.infos-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.infos-faq .faq-item.active .faq-answer {
  max-height: 150px;
}

.infos-faq .faq-answer p {
  padding: 1.2rem 1.5rem;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Section Contact (fond sombre) */
.infos-contact {
  padding: 4rem 5%;
  background: #1a1a1a;
  text-align: center;
}

.infos-contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-socials {
  margin-top: 2rem;
}

.contact-socials p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.contact-socials-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-socials-links a {
  color: #FF6B2C;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.contact-socials-links a:hover {
  opacity: 0.7;
}

/* ==================== RESPONSIVE INFOS ==================== */

@media (max-width: 900px) {
  .acces-container {
    flex-direction: column;
    text-align: center;
  }
  
  .acces-image img {
    max-width: 100%;
  }
  
  .camping-content {
    flex-direction: column;
    text-align: center;
  }
  
  .infos-horaires-grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .dresscode-visuel {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .dresscode-plus {
    transform: rotate(90deg);
  }
  
  .dresscode-card {
    width: 100%;
    max-width: 200px;
  }
  
  .pratiques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .parking-grid,
  .billetterie-grid {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .acces-infos h2,
  .infos-parking h2,
  .infos-plan h2,
  .infos-billetterie h2,
  .infos-restauration h2,
  .infos-reglement h2,
  .infos-pratiques h2,
  .infos-corrida h2,
  .infos-faq h2 {
    font-size: 2.2rem;
  }
  
  .infos-horaires-block h2,
  .infos-dresscode-block h2,
  .infos-allemand h2,
  .camping-texte h2 {
    font-size: 2rem;
  }
  
  .horaire-item {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
  
  .pratiques-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .pratique-card {
    padding: 1rem 0.5rem;
  }
  
  .parking-item,
  .billetterie-item {
    min-width: 120px;
    padding: 1rem 1.5rem;
  }
  
  .corrida-infos {
    flex-direction: column;
    align-items: center;
  }
  
  .corrida-item {
    width: 100%;
    max-width: 250px;
  }
}



















/* ==================== PAGE GALERIE ==================== */

/* Section principale galerie */
.galerie-section {
  padding: 5rem 5%;
  background: #FFF9F5;
}

.galerie-annees {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* Cartes années */
.galerie-carte {
  position: relative;
  width: 400px;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.galerie-carte:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.galerie-carte-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.galerie-carte:hover .galerie-carte-bg {
  transform: scale(1.1);
}

.galerie-carte-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.galerie-carte-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  text-align: center;
}

.galerie-carte-annee {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: white;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.galerie-carte-subtitle {
  display: block;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-top: 0.5rem;
}

/* Carte "à venir" */
.galerie-carte-soon .galerie-carte-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
}

.galerie-carte-soon .galerie-carte-annee {
  opacity: 0.6;
}

/* Page hero small */
.page-hero-small {
  height: 40vh;
  min-height: 300px;
}

/* Bouton retour galerie */
.mini-hero .galerie-back {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.mini-hero .galerie-back:hover {
  color: #FF6B2C;
}

/* Grille photos */
.galerie-grille-section {
  padding: 4rem 5%;
  background: #1a1a1a;
}

.galerie-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.galerie-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galerie-item:hover img {
  transform: scale(1.1);
}

.galerie-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 44, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galerie-item:hover .galerie-item-overlay {
  opacity: 1;
}

.galerie-item-overlay span {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 4rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #FF6B2C;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Section "à venir" 2026 */
.galerie-soon-section {
  padding: 6rem 5%;
  background: #FFF9F5;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerie-soon-content {
  text-align: center;
  max-width: 500px;
}

.galerie-soon-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.galerie-soon-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.galerie-soon-content p {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==================== RESPONSIVE GALERIE ==================== */

@media (max-width: 900px) {
  .galerie-annees {
    gap: 2rem;
  }
  
  .galerie-carte {
    width: 100%;
    max-width: 350px;
    height: 400px;
  }
  
  .galerie-carte-annee {
    font-size: 5rem;
  }
  
  .galerie-grille {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .galerie-carte {
    height: 350px;
  }
  
  .galerie-carte-annee {
    font-size: 4rem;
  }
  
  .galerie-grille {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .galerie-item-overlay span {
    font-size: 1.2rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    font-size: 2.5rem;
  }
  
  .lightbox-close {
    font-size: 2rem;
    top: 10px;
    right: 15px;
  }
  
  .galerie-soon-content h2 {
    font-size: 2.5rem;
  }
}



















/* ==================== PRELOADER ==================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 120px;
  margin-bottom: 2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: #FF6B2C;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



















/* ==================== PAGE CONTACT ==================== */

.contact-section {
  padding: 4rem 5%;
  background: #FFF9F5;
}

.contact-container {
  display: flex;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-block,
.contact-info-block {
  flex: 1;
}

.contact-form-block h2,
.contact-info-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

/* Formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6B2C;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
}

/* Infos de contact */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-info-item a {
  color: #FF6B2C;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* Réseaux sociaux */
.contact-socials-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.contact-socials-block strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-socials-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.8rem 1rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  background: #FF6B2C;
  color: white;
  transform: translateX(5px);
}

.contact-social-link svg {
  flex-shrink: 0;
}

/* Section Map */
.contact-map {
  padding: 4rem 5%;
  background: #1a1a1a;
  text-align: center;
}

.contact-map h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive Contact */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .contact-form-block h2,
  .contact-info-block h2,
  .contact-map h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 5%;
  }
  
  .contact-form .btn {
    width: 100%;
  }
  
  .contact-socials-icons {
    gap: 0.5rem;
  }
}



















/* ==================== PAGES LÉGALES ==================== */

.legal-section {
  padding: 4rem 5%;
  background: #FFF9F5;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #FF6B2C;
  margin-bottom: 1rem;
}

.legal-block p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-block a {
  color: #FF6B2C;
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

.legal-block ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-block li {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .legal-section {
    padding: 2rem 5%;
  }
  
  .legal-block h2 {
    font-size: 1.5rem;
  }
}


















/* ==================== CONFIDENTIALITE ==================== */
.legal-intro {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.legal-block ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

















/* ==================== COOKIES ==================== */

.legal-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}



















/* ==================== LAZY LOADING GALERIE ==================== */

.galerie-item img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galerie-item img.loaded {
  opacity: 1;
}

.galerie-item {
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}