/* ── Intro ─────────────────────────────────────────────────────────────── */

.lieu-intro {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 15vh;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.lieu-intro {
  height: calc(100vh - 64px);
  padding-top: 64px;
  background-image: url("../images/SKP_Head.svg");
  background-color: rgba(255, 255, 255, 0.94);
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  background-size: 130vh;
}

.lieu-intro-title {
  margin: 0;
  font-family: "SKPHeadlines Bold", sans-serif;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lieu-intro-inner {
  max-width: 720px;
  padding: 0 32px;
}

.lieu-intro .discover-date {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  overflow: hidden;
  font-size: 16px;
  font-family: "SKPHeadlines Bold", sans-serif;
  text-transform: uppercase;
}

.lieu-intro .discover-date .reveal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background-color: var(--sk-primary);
}

.lieu-intro .discover-date .reveal-text {
  position: relative;
  z-index: 1;
  display: block;
  padding: 8px 16px;
  color: #fff;
  opacity: 0;
}

.lieu-intro .lieu-about-text {
  margin: 24px auto 0;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.55;
  color: var(--text-color);
}

.lieu-intro .lieu-about-text span {
  font-family: "SKPHeadlines Bold", sans-serif;
}

.lieu-intro .discover-event-bloc {
  margin-top: 48px;
}

.lieu-intro .discover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.lieu-intro .discover-title {
  margin: 0 0 6px;
  font-size: 13px;
  font-family: "SKPHeadlines Bold", sans-serif;
  text-transform: uppercase;
}

.lieu-intro .scroll-down-arrow svg {
  width: 24px;
  height: 24px;
}

.page-lieu [data-anim-load] {
  opacity: 0;
  will-change: transform, opacity;
}

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .lieu-intro {
    padding: 100px 24px 32px;
  }
}

.lieu-intro-inner {
  position: relative;
  z-index: 1;
}

/* ── Horizontal scroll gallery ─────────────────────────────────────────── */

.lieu-hscroll-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  background: #fff;
}

.lieu-hscroll-scroll {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lieu-hscroll-row {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: 32px;
  padding-right: 32px;
  will-change: transform;
}

.lieu-hscroll-card {
  flex-shrink: 0;
  position: relative;
  width: min(72vw, 720px);
  height: 88%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  padding: 48px 64px;
  box-sizing: border-box;
  will-change: transform;
}

.lieu-hscroll-card:first-child {
  margin-left: 32px;
}

.lieu-hscroll-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.08) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.lieu-hscroll-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.lieu-hscroll-label {
  position: relative;
  z-index: 2;
  margin: 0;
  margin-top: auto;
  font-family: "SKPHeadlines Bold", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .lieu-hscroll-section {
    height: calc(100vh - 64px);
  }

  .lieu-hscroll-row {
    gap: 20px;
    padding-right: 20px;
  }

  .lieu-hscroll-card {
    width: 85vw;
    height: 82%;
    padding: 32px 24px;
    border-radius: 12px;
  }

  .lieu-hscroll-card:first-child {
    margin-left: 20px;
  }
}
