/* HERO SANS IMAGE */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40vh; /* hauteur du hero */
    background: linear-gradient(135deg, #db57c0, #ff914d,#dcd3d3); /* fond coloré ou dégradé */
    color: white;
    padding: 2rem;
    border-radius: 8px;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-family: 'Bebas Neue';
    font-size: clamp(2.5rem, 5vw, 4rem); /* taille responsive */
    line-height: 1.1;
    margin: 0 0 1rem 0;
    color: white;
}

.hero-title span {
    color: #7d1a23; /* accent sur "50 ans" */
}

.hero-intro {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-intro {
        font-size: 1rem;
    }
}

/* ------------------ COUNTDOWN ------------------ */
#countdown-container {
    text-align: center;
    margin: 40px auto;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.time-block {
    background: #7d1a23;
    color: white;
    padding: 10px;
    width: 110px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.time-block span {
    font-size: 2.3rem;
    font-weight: 700;
    display: block;
}

.time-block p {
    margin-top: 5px;
    font-size: 0.9rem;
}

ul {
    list-style-type: none; /* supprime les puces */
    padding-left: 0;       /* supprime l’espace à gauche */
}

ul li::before {
    content: "🔥";        /* symbole personnalisé avant chaque élément */
    margin-right: 8px;    /* espace entre symbole et texte */
}

/*-------PROGRAMME-------*/
*{
  box-sizing: border-box; /* inclut marges et paddings dans la largeur */
}

.program-wrapper {
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.program-intro {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: black;
}

.program-row {
  display: flex;
  gap: 20px;          /* espace entre les images */
  flex-wrap: nowrap;  /* empêche le passage à la ligne */
}

.program-item {
  flex: 1;            /* chaque image prend la même largeur disponible */
  height: 300px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.program-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}

.program-text {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 1;
  max-width: 90%;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.program-text .highlight {
  color: #ffd166;
}

/* Responsive */
@media (max-width: 768px) {
  .program-row {
    flex-wrap: wrap; /* empile les images sur mobile */
  }
  .program-item {
    flex: 1 1 100%;
    height: 250px;
  }
  .program-text {
    font-size: 1.2rem;
  }
  .program-intro {
    font-size: 1.5rem;
  }
}

video {
  max-width: 90%;
  height:auto;
  border-radius: 6px;
  object-fit: cover;
  margin-top:40px;
  display: flex;
  align-items: center;
}

.video-section {
  display: flex;
  justify-content: center; /* centre horizontalement */
  margin: 2rem 0;
}

.video-div {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center; /* centre horizontalement */
  margin: 2rem 0;
}

.video-div video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}