/* ===== PAGE NOCTURNES ===== */

/* HERO */
.noc-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  background: #1a0a20;
}

.noc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/labyrinthe-fond.png');
  background-repeat: repeat;
  background-size: 600px;
  opacity: 0.04;
}

.noc-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.noc-hero-label {
  font-family: 'Luckiest Guy', cursive;
  color: #d43977;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.noc-hero h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(60px, 10vw, 120px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}

.noc-hero-sub {
  font-size: clamp(17px, 1.5vw, 22px);
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

/* NAV RAPIDE */
.noc-nav {
  display: flex;
}

.noc-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  text-decoration: none;
  color: white;
  gap: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.noc-nav-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.noc-nav-emoji {
  font-size: 32px;
}

.noc-nav-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(14px, 2vw, 20px);
  text-align: center;
  letter-spacing: 0.5px;
}

.noc-nav-age {
  font-size: 13px;
  background: rgba(0,0,0,0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

/* SECTION NOCTURNE */
.noc-section {
  border-bottom: 4px solid rgba(0,0,0,0.06);
}

.noc-header {
  padding: 40px 30px;
  color: white;
}

.noc-header-horreur {
  background: #1a1a2e;
}

.noc-header-fluo {
  background: #4a2a6a;
}

.noc-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.noc-emoji-big {
  font-size: clamp(50px, 7vw, 90px);
  line-height: 1;
  flex-shrink: 0;
}

.noc-titre {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(26px, 3.5vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.noc-accroche {
  font-size: clamp(16px, 1.4vw, 20px);
  opacity: 0.88;
}

/* CORPS DE SECTION */
.noc-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 30px 60px;
}

/* ALERTES */
.noc-alertes {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.noc-alerte {
  border-radius: 12px;
  padding: 14px 22px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.noc-alerte-rouge {
  background: #fff0f0;
  border-left: 5px solid #c0392b;
  color: #7a1010;
}

.noc-alerte-orange {
  background: #fff8ec;
  border-left: 5px solid #e67e22;
  color: #7a4a10;
}

.noc-alerte-violet {
  background: #f5f0ff;
  border-left: 5px solid #705399;
  color: #3a1a5c;
  margin-bottom: 28px;
  font-size: clamp(15px, 1.2vw, 18px);
  border-radius: 12px;
  padding: 14px 22px;
  line-height: 1.5;
}

/* GRILLE FORMULES */
.noc-infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.noc-formule {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid #1a1a2e;
}

#fluo .noc-formule {
  border-top-color: #705399;
}

.noc-formule h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #2c2418;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.noc-formule ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.noc-formule ul li {
  font-size: clamp(15px, 1.1vw, 17px);
  color: #444;
  line-height: 1.4;
}

/* BON À SAVOIR */
.noc-infos-bloc {
  background: #f5f0e8;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
}

.noc-infos-bloc h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #2c2418;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.noc-infos-bloc p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}

.noc-infos-bloc p:last-child {
  margin-bottom: 0;
}

/* VIDÉO INSTAGRAM */
.noc-video {
  margin-bottom: 36px;
}

.noc-video-titre {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #2c2418;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.noc-video-wrapper {
  display: flex;
  justify-content: center;
}

/* RÈGLES */
.noc-regles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.noc-regle {
  background: #1a1a2e;
  color: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.4;
}

/* TEXTE FLUO */
.noc-fluo-texte {
  background: #f5f0ff;
  border-left: 5px solid #705399;
  border-radius: 0 16px 16px 0;
  padding: 24px 30px;
  margin-bottom: 32px;
}

.noc-fluo-texte p {
  font-size: clamp(16px, 1.3vw, 20px);
  color: #2c2418;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* CTA */
.noc-cta {
  background: #1a1a2e;
  text-align: center;
  padding: 80px 20px;
}

.noc-cta h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(36px, 5vw, 70px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.noc-cta p {
  font-size: clamp(17px, 1.4vw, 22px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.noc-cta-btn {
  background: #d43977;
  color: white !important;
  font-size: 20px;
  padding: 18px 40px;
  border-radius: 14px;
}

.noc-cta-btn:hover {
  background: #b52f63;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

  .noc-hero {
    margin-top: 96px;
    min-height: 300px;
  }

  .noc-hero-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 200px 20px 30px !important;
  }

  .noc-nav {
    flex-direction: column;
  }

  .noc-nav-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 18px 20px;
    gap: 16px;
  }

  .noc-nav-emoji {
    font-size: 26px;
  }

  .noc-header {
    padding: 24px 16px;
  }

  .noc-header-inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .noc-body {
    padding: 30px 16px 40px;
  }

  .noc-alertes {
    flex-direction: column;
  }

  .noc-alerte {
    min-width: unset;
  }

  .noc-infos-grid {
    grid-template-columns: 1fr;
  }

  .noc-infos-bloc {
    padding: 20px;
  }

  .noc-cta {
    padding: 50px 20px;
  }
}

.noc-horaires-info {
  background: #f0f4ff;
  border-left: 4px solid #7a8ec8;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  color: #333;
}

.noc-dates {
  background: #f5f0ff;
  border-left: 4px solid #705399;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 20px 0;
}

.noc-dates h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 18px;
  margin-bottom: 12px;
  color: #2e1a47;
}

.noc-dates ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.noc-dates ul li {
  padding: 6px 0;
  font-size: 16px;
  color: #2e1a47;
}

.noc-dates-info {
  font-size: 14px;
  color: #555;
  margin: 0;
}
