/* ==================== HERO STAGE ==================== */
#hero-stage {
  background-image: url('../images/img_bg.jpg') !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  position: relative;
  opacity: 1 !important;
  transform: none !important;
}

#hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(20, 10, 5, 0.55) 50%,
    rgba(255, 123, 58, 0.15) 100%
  );
}

#hero-stage .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

#hero-stage .hero-inner {
  max-width: 650px;
  width: 100%;
  text-align: center;
  padding: 2rem 2rem 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(86, 52, 40, 0.39), rgba(255, 124, 58, 0.43));
  border: 1px solid rgba(255, 194, 138, 0.2);
  backdrop-filter: blur(4px);
}

#hero-stage .hero-inner h1 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

#hero-stage .hero-inner h1 span { color: #ffd8a0; }

#hero-stage .hero-inner p {
  font-size: 1rem;
  color: #fff4ea;
  margin: 0;
  line-height: 1.6;
}

#hero-stage .hero-inner .btns {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}


/* ==================== BLOCS SEMAINE ==================== */
.week-block {
  padding: 5rem 0;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 58, 0.14) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 194, 138, 0.10) 0, transparent 60%),
    #18131f;
}

.week-block.alt {
  background:
    radial-gradient(circle at top left, rgba(255, 123, 58, 0.14) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 194, 138, 0.10) 0, transparent 60%),
    #141018;
}


/* ==================== CARTE JOUR ==================== */
.day-card {
  background: #1f1a2b;
  border: 1px solid #2a2e36;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 2rem;
}

.day-card:hover {
  box-shadow: 0 8px 32px rgba(255, 123, 58, 0.25);
  transform: translateY(-4px);
}

/* Images cachées — affichées uniquement en popup */
.day-card img.img-zoomable {
  display: none;
}

.day-card .day-body {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--accent);
}

.day-card .day-body strong {
  display: block;
  font-size: 0.97rem;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.day-card .day-body em {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.75;
  display: block;
}

.day-card.no-img .day-body {
  padding: 1.75rem;
}


/* ==================== BOUTON VOIR IMAGE ==================== */
.btn-voir-img {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.2s, transform 0.2s;
}

.btn-voir-img:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  #hero-stage .hero-inner { max-width: 92%; }
}

@media (max-width: 768px) {
  #hero-stage { min-height: 60vh; }
  #hero-stage .hero-inner h1 { font-size: 1.5rem; }
  #hero-stage .hero-inner { padding: 1.5rem 1.25rem 2rem; }
  .week-block { padding: 3rem 0; }
}

@media (max-width: 576px) {
  #hero-stage { min-height: 50vh; }
  #hero-stage .hero-inner h1 { font-size: 1.2rem; }
}

/* ==================== MODAL IMAGE FIXE ==================== */
#imageModal .modal-body {
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0b14;
}

#imageModal .modal-body img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}