/* ============================================
   HOMEPAGE V2 — New Design
   ============================================ */

/* ===== ITC GARAMOND STD @font-face ===== */
@font-face {
  font-family: "ITC Garamond Std";
  src: url("../../fonts/ITC-Garamond-Std/ITCGaramondStd-Lt.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ITC Garamond Std";
  src: url("../../fonts/ITC-Garamond-Std/ITCGaramondStd-LtIta.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "ITC Garamond Std";
  src: url("../../fonts/ITC-Garamond-Std/ITCGaramondStd-Bk.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ITC Garamond Std";
  src: url("../../fonts/ITC-Garamond-Std/ITCGaramondStd-BkIta.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "ITC Garamond Std";
  src: url("../../fonts/ITC-Garamond-Std/ITCGaramondStd-Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "ITC Garamond Std";
  src: url("../../fonts/ITC-Garamond-Std/ITCGaramondStd-BdIta.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

/* Background texture rideau sur toute la page */
@keyframes curtain-sway {
  0%   { transform: scale(1.05) translateX(0px) translateY(0px); }
  25%  { transform: scale(1.06) translateX(-6px) translateY(-3px); }
  50%  { transform: scale(1.05) translateX(4px)  translateY(2px); }
  75%  { transform: scale(1.06) translateX(-3px) translateY(-2px); }
  100% { transform: scale(1.05) translateX(0px)  translateY(0px); }
}

.kl-homepage {
  position: relative;
}
.kl-homepage::before {
  content: "";
  position: fixed;
  inset: -5%;
  z-index: -1;
  background-image: url("../../images/homepage/bigbg.png");
  background-size: cover;
  background-position: center top;
  animation: curtain-sway 12s ease-in-out infinite;
  will-change: transform;
}
@media (max-width: 767px) {
  .kl-homepage::before {
    background-position: 60% top;
    background-size: 250% auto;
    animation: none;
  }
}

/* Sections : fond transparent pour laisser passer le background */
.kl-ceremony-v2,
.kl-pourquoi-v2,
.kl-images-v2,
.kl-partners-v2,
.kl-footer-v2 {
  background: transparent !important;
}

/* Nav : sticky, slide down au scroll up, snap up au scroll down */
/* Homepage : header caché par défaut, fixed hors flux */
.homepage .kl-header-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  margin-top: 0;
  transform: translateY(-100%);
  background-color: rgba(180, 180, 180, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: none;
}
/* Autres pages : sticky classique */
.kl-header-sticky {
  position: sticky !important;
  top: 0;
  background-color: rgba(180, 180, 180, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 380ms ease;
}
/* Cachée instantanément */
.kl-header-sticky.nav-hidden {
  transform: translateY(-100%) !important;
  transition: none !important;
}
/* Réapparaît avec la transition smooth */
.kl-header-sticky.nav-visible {
  transform: translateY(0) !important;
  transition: transform 380ms ease !important;
}

/* Police Garamond sur tous les <p> */
.kl-homepage p {
  font-family: "ITC Garamond Std", serif;
}

/* ===== HERO ===== */
.kl-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.kl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kl-hero-bg img,
.kl-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.kl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Hero content — 3 colonnes centrées dans la page */
.kl-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
}
@media (min-width: 992px) {
  .kl-hero-content {
    padding: 0 60px;
  }
}

/* Hero columns */
.kl-hero-col {
  flex: 1;
  min-width: 0;
}
.kl-hero-col--center {
  text-align: center;
  flex: 0 0 auto;
  max-width: 50%;
}
.kl-hero-col--right {
  text-align: right;
}

/* Hero title — taille calibrée comme dans le design */
.kl-hero-title {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: clamp(32px, 5.2vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  display: inline-block;
}
.kl-hero-copy {
  font-size: 0.38em;
  vertical-align: super;
  font-weight: 700;
}

/* Hero Spotify badge */
.kl-hero-spotify {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.kl-hero-spotify-label {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.kl-hero-spotify img {
  max-width: 70px;
  object-fit: contain;
}

/* Hero side info */
.kl-hero-label {
  display: block;
  font-family: "ITC Garamond Std", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.kl-hero-date {
  display: block;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: clamp(14px, 1.7vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Hero countdown */
.kl-hero-countdown {
  display: flex;
  align-items: baseline;
  gap: 3px;
  justify-content: flex-end;
}
.kl-cd-num {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.kl-cd-sep {
  font-size: clamp(14px, 2vw, 26px);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

/* Mobile : masquer les colonnes latérales, centrer */
@media (max-width: 575px) {
  .kl-hero-col--left,
  .kl-hero-col--right {
    display: none;
  }
  .kl-hero-col--center {
    max-width: 100%;
  }
}

/* ===== NAV STICKY ===== */
.kl-header-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #080808;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.kl-header-sticky .kl-navbar {
  padding: 12px 0;
}
.kl-header-sticky .navbar-brand img {
  max-height: 26px;
  width: auto;
}

/* Collapse container en flex pour centrage nav */
.kl-header-sticky .kl-navbar-collapse {
  display: flex !important;
  align-items: center;
  flex: 1;
}
@media (max-width: 991px) {
  .kl-header-sticky .kl-navbar-collapse {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Nav items centrés */
.kl-header-sticky .kl-navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 4px;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .kl-header-sticky .kl-navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 10px 0;
    gap: 0;
  }
}

/* Liens nav — Garamond Book, non uppercase */
.kl-header-sticky .kl-navbar-nav .kl-nav-link {
  font-family: "ITC Garamond Std", serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.85);
  padding: 4px 20px;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.kl-header-sticky .kl-navbar-nav .kl-nav-link:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .kl-header-sticky .kl-navbar-nav .kl-nav-link {
    padding: 10px 0;
  }
}

/* Bouton Billetterie + Spotify à droite */
.kl-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .kl-nav-right {
    padding: 12px 0 16px;
  }
}
.kl-btn-billetterie {
  display: inline-block;
  font-family: "ITC Garamond Std", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 6px 18px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.kl-btn-billetterie:hover {
  color: #000;
  border-color: #fff;
}
.kl-nav-right img {
  max-height: 18px;
  object-fit: contain;
}

/* Mobile toggle */
.kl-navbar-toggler {
  background: none;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ===== CÉRÉMONIE V2 ===== */
.kl-ceremony-v2 {
  padding: 80px 0;
  background: #080808;
}
.kl-ceremony-v2-row {
  gap: 40px 0;
  margin-top: 80px;
}
.kl-video-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.kl-video-thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
@media (min-width: 992px) {
  .kl-video-thumb img {
    height: 380px;
  }
}
.kl-video-thumb:hover img {
  transform: scale(1.03);
}
.kl-video-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.kl-video-thumb:hover .kl-video-thumb-play {
  background: rgba(0,0,0,0.3);
}
.kl-video-thumb-play svg {
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.kl-ceremony-v2-text {
  padding-left: 0;
}
@media (min-width: 992px) {
  .kl-ceremony-v2-text {
    padding-left: 60px;
  }
}
.kl-ceremony-v2-text h2 {
  font-family: "ITC Garamond Std", serif;
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: -20px;
  color: #fff;
  @media (max-width: 991px) {
    margin-bottom: 20px;
  }
}
.kl-ceremony-v2-text p {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  max-width: 360px;
  margin: 0;
}

/* ===== POURQUOI V2 ===== */
.kl-pourquoi-v2 {
  padding: 80px 0 100px;
  background: #080808;
}
.kl-pourquoi-v2-title {
  font-family: "ITC Garamond Std", serif;
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1;
}
.kl-pourquoi-v2-cols {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.kl-pourquoi-v2-col {
  flex: 1;
  padding: 0 36px;
}
.kl-pourquoi-v2-col:first-child {
  padding-left: 0;
}
.kl-pourquoi-v2-col:last-child {
  padding-right: 0;
}
.kl-pourquoi-v2-col p {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.kl-pourquoi-v2-divider {
  width: 1px;
  background: rgba(255,255,255,0.18);
  align-self: stretch;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .kl-pourquoi-v2-cols {
    flex-direction: column;
    gap: 28px;
  }
  .kl-pourquoi-v2-col {
    padding: 0;
  }
  .kl-pourquoi-v2-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}

/* ===== IMAGES V2 ===== */
.kl-images-v2 {
  padding: 0 0 80px;
  background: #080808;
}
.kl-images-v2-outer {
  position: relative;
  margin-bottom: 16px;
}
.kl-images-v2-slider {
  margin: 0;
}
.kl-images-v2-item {
  opacity: 0;
}
.kl-images-v2-item {
  padding: 0 3px;
}
.kl-images-v2-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
/* Flèches custom */
.kl-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(11, 11, 11, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, background 0.2s;
}
.kl-img-arrow:hover {
  background: rgba(11, 11, 11, 0.95);
}
.kl-img-arrow--prev {
  left: 12px;
}
.kl-img-arrow--next {
  right: 12px;
}
.kl-img-arrow.slick-disabled {
  opacity: 0;
  pointer-events: none;
}
.kl-images-v2-label {
  text-align: left;
  font-size: 14px !important;
  max-width: 360px !important;
  font-family: "Garamond", serif !important;
  transform: scaleY(1.4) !important;
  line-height: 17px !important;
  color: #CACACA !important;
}

/* ===== PARTNERS V2 ===== */
.kl-partners-v2 {
  padding: 80px 0 100px;
  background: #080808;
  text-align: center;
}
.kl-partners-v2-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.kl-partners-v2-row + .kl-partners-v2-row {
  margin-top: 36px;
}
.kl-partners-v2-row--primary .kl-partners-v2-item img {
  max-height: 38px;
  max-width: 150px;
}
.kl-partners-v2-row--secondary .kl-partners-v2-item img {
  max-height: 24px;
  max-width: 110px;
}
.kl-partners-v2-item {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.kl-partners-v2-item:hover {
  opacity: 1;
}
.kl-partners-v2-item img {
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .kl-partners-v2 {
    padding: 50px 0 60px;
  }
  .kl-partners-v2-row {
    gap: 12px;
    flex-wrap: nowrap;
  }
  .kl-partners-v2-row + .kl-partners-v2-row {
    margin-top: 20px;
  }
  .kl-partners-v2-row--primary .kl-partners-v2-item img {
    max-height: 45px;
    max-width: 120px;
  }
  .kl-partners-v2-row--secondary .kl-partners-v2-item img {
    max-height: 35px;
    max-width: 100px;
  }
  .kl-partners-v2-row--third .kl-partners-v2-item img {
    max-height: 25px;
    max-width: 100px;
  }
  .kl-partners-v2 .kl-partners-v2-item--vainkeurz img {
    max-height: 40px !important;
  }
  .kl-hero-countdown .kl-cd-sep {
    font-size: 10px !important;
  }
}

/* ===== RDV V2 ===== */
.kl-rdv-v2 {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: visible;
  background: #000;
  padding: 200px 0 0;
}
.kl-rdv-v2-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kl-rdv-v2-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.kl-rdv-v2-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 60px;
}
.kl-rdv-v2-title {
  font-family: "ITC Garamond Std", serif;
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 40px;
  max-width: 860px;
}
.kl-rdv-v2-title {
  position: relative;
  z-index: 2;
}
.kl-rdv-v2-title em {
  font-style: italic;
}
.kl-rdv-v2-statue {
  position: relative;
  z-index: 1;
  margin: 0 auto 40px;
  width: 220px;
  height: 340px;
}
@media (min-width: 768px) {
  .kl-rdv-v2-statue {
    width: 300px;
    height: 460px;
  }
}
.kl-rdv-v2-model {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.35));
}
.kl-rdv-v2-model::part(default-progress-bar) {
  display: none;
}
.kl-rdv-v2-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding-top: 20px;
}

/* ===== FOOTER V2 ===== */
.kl-footer-v2 {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.kl-footer-v2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.kl-footer-v2-social,
.kl-footer-v2-legal {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kl-footer-v2-social li,
.kl-footer-v2-legal li {
  display: flex;
  align-items: center;
}
.kl-footer-v2-social li + li::before,
.kl-footer-v2-legal li + li::before {
  content: "|";
  color: rgba(255,255,255,0.2);
  padding: 0 12px;
  font-size: 11px;
}
.kl-footer-v2-social a,
.kl-footer-v2-legal a {
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.kl-footer-v2-social a:hover,
.kl-footer-v2-legal a:hover {
  color: #fff;
}
.kl-footer-v2-logo img {
  max-height: 28px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.kl-footer-v2-logo:hover img {
  opacity: 1;
}
@media (max-width: 767px) {
  .kl-footer-v2-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* ===== Partners reveal animation ===== */
.kl-partners-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.kl-pourquoi-v2-title{
  font-weight: 400 !important;
}

/* ===== PROJECTEUR ===== */
.kl-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  will-change: transform;
  filter: blur(12px);
}
@media (max-width: 767px) {
  .kl-spotlight {
    width: 300px;
    height: 300px;
  }
}
