/* ═══════════════════════════════════════════
   LA PERGOLA — nightclub.css
═══════════════════════════════════════════ */

/* ─── Variables locales ───────────────────── */
:root {
  --nc-blue:     #1A3CFF;
  --nc-blue-lt:  #4D6FFF;
  --nc-blue-dk:  #0d2299;
  --nc-light:    #f5f4f0;
  --nc-border:   rgba(255,255,255,.12);
}

/* ─── Fond global de la page ─────────────── */
.page-nightclub {
  background: linear-gradient(160deg, #1A3CFF 0%, #0d2299 35%, #081466 70%, #04093d 100%);
  background-attachment: fixed;
}

/* ─── Hero ────────────────────────────────── */
.nc-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #04093d;
}
.nc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  transition: transform 8s ease;
}
.nc-hero:hover .nc-hero-img { transform: scale(1.04); }
.nc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,9,61,.3) 0%, rgba(4,9,61,.65) 100%);
}
.nc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}
.nc-hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
}
.nc-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}
.nc-hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(.95rem, 2.2vw, 1.6rem);
  display: block;
  color: rgba(255,255,255,.72);
  letter-spacing: .01em;
  margin-top: .6rem;
}
.nc-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 300;
}
.nc-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nc-hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.3); }
}

/* ─── Sections sur fond dégradé (transparent) */
.nc-section {
  background: transparent;
  color: #fff;
  padding: 6rem 0;
}

/* ─── Sections claires (fond crème) ─────── */
.nc-section-light {
  background: var(--nc-light);
  color: #003366;
  padding: 6rem 0;
}

/* ─── Conteneur ─────────────────────────── */
.nc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Eyebrow ────────────────────────────── */
.nc-eyebrow {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}
.nc-eyebrow-dark {
  color: var(--nc-blue);
}

/* ─── Titres ─────────────────────────────── */
.nc-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  color: #fff;
}
.nc-title span { color: rgba(255,255,255,.55); }

.nc-title-dark {
  color: #003366;
}
.nc-title-dark span { color: var(--nc-blue); }

/* ─── Blocs de texte courant ─────────────── */
.nc-text-block {
  max-width: 640px;
}

.nc-prose {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
}
.nc-prose p { margin-bottom: 1rem; }
.nc-prose p:last-child { margin-bottom: 0; }
.nc-prose strong {
  color: #fff;
  font-weight: 600;
}

.nc-prose-dark {
  color: rgba(0,0,0,.6);
}
.nc-prose-dark strong {
  color: #003366;
}

/* ─── Bouton principal ───────────────────── */
.nc-btn {
  display: inline-block;
  background: #fff;
  color: var(--nc-blue-dk);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, color .25s, transform .2s;
}
.nc-btn:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-2px);
}

/* ─── Infos pratiques — style "NOTRE CUISINE" ── */
.nc-infos-section {
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(0);
}
.nc-infos-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
/* Le label rouge reste via .section-eyebrow (--red dans styles.css) */
/* Le titre : on surcharge la couleur noire par défaut pour le fond bleu */
.section-title--white {
  color: #fff !important;
}
.nc-infos-divider {
  width: 56px;
  height: 4px;
  background: var(--yellow, #FFB81C);
  margin: 0 auto 2.5rem;
}
.nc-infos-text {
  font-size: clamp(1rem, 2vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.1rem;
  font-weight: 300;
}
.nc-infos-text strong {
  color: #fff;
  font-weight: 600;
}

/* ─── Galerie ambiance ───────────────────── */
.nc-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: .5rem;
}
.nc-gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  background: #0d2299;
}
.nc-gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}
.nc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .5s;
  opacity: .88;
}
.nc-gallery-item:hover img {
  transform: scale(1.06);
  opacity: 1;
}

/* ─── Programmation ──────────────────────── */
.nc-prog-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.nc-prog-col {
  padding: 0 3rem;
}
.nc-prog-col-sunday {
  opacity: .72;
}
.nc-prog-divider {
  width: 1px;
  background: rgba(255,255,255,.18);
  align-self: stretch;
  min-height: 180px;
}
.nc-prog-period {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.nc-prog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.nc-prog-list li {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nc-prog-list li:last-child { border-bottom: none; }
.nc-prog-sunday-name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
.nc-prog-caption {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── VIP — bleed gauche complet ────────── */
.nc-vip-section {
  padding: 0;
  overflow: hidden;
}
.nc-vip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}
.nc-vip-img {
  position: relative;
  overflow: hidden;
  /* pas de border-radius, pas de marge gauche : bleed complet */
}
.nc-vip-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nc-vip-text {
  padding: 5rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nc-vip-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.nc-btn-dark {
  background: #003366;
  color: #fff;
}
.nc-btn-dark:hover {
  background: var(--nc-blue);
  color: #fff;
}
.nc-vip-note {
  font-size: .85rem;
  line-height: 1.65;
  max-width: 320px;
  color: rgba(0,0,0,.5);
}
.nc-vip-note strong {
  color: #003366;
  display: block;
  margin-bottom: .15rem;
}

/* ─── Section Réseaux sociaux (fond blanc) ─ */
.nc-social-section {
  background: #fff;
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid #e8e6e0;
}
.nc-social-title {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #003366;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.nc-social-body {
  font-size: 1rem;
  color: rgba(0,0,0,.5);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}
.nc-social-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.nc-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.nc-social-btn:hover { transform: translateY(-2px); opacity: .85; }
.nc-social-btn-insta {
  background: var(--nc-blue);
  color: #fff;
}
.nc-social-btn-fb {
  background: #003366;
  color: #fff;
}

/* ─── Mosaïque photos sous réseaux sociaux ── */
.nc-insta-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .35rem;
  margin-top: 3rem;
}
.nc-mosaic-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e0ddd6;
}
.nc-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .4s;
  opacity: .88;
}
.nc-mosaic-item:hover img {
  transform: scale(1.07);
  opacity: 1;
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .nc-prog-split { grid-template-columns: 1fr; gap: 2.5rem; max-width: 500px; }
  .nc-prog-col { padding: 0; }
  .nc-prog-divider { width: 100%; height: 1px; min-height: unset; }
  /* VIP : image pleine largeur au-dessus du texte */
  .nc-vip { grid-template-columns: 1fr; min-height: unset; }
  .nc-vip-img { position: relative; overflow: hidden; height: 280px; }
  .nc-vip-img img { position: static !important; width: 100%; height: 280px; object-fit: cover; display: block; }
  .nc-vip-text { padding: 3rem 2rem; }
  .nc-gallery { grid-template-columns: repeat(2, 1fr); }
  .nc-gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .nc-insta-mosaic { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .nc-section,
  .nc-section-light { padding: 4rem 0; }
  .nc-gallery { grid-template-columns: 1fr 1fr; }
  .nc-insta-mosaic { grid-template-columns: repeat(3, 1fr); }
  .nc-vip-text { padding: 2.5rem 1.5rem; }
  .nc-hero-title { font-size: clamp(2.8rem, 15vw, 4rem); }
}
