@font-face {
  font-family: "Bebas Neue Book";
  src: url("../font/BebasNeueBook.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: "Manrope";
  src: url("../font/Manrope.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../font/BebasNeue.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../font/CormorantGaramond.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap
}


/* ================= RESET ================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.loaded { overflow: auto; }

body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}

body, .tracklist .title {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #1c1a2b;
  color: rgba(255,255,255,0.8);
}

h2, .reveal-text span {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 100;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

span {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,0.8);
}


/* ================= LEGAL ================= */
.legal {
  padding: 20px 20px !important;
  text-align: left !important;
  margin: auto !important;
  max-width: 80vw !important;
}

.legal-top {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  z-index: 100;
}

.legal hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.05);
  width: 80%;
  margin: 50px auto 20px;
}

.legal h3 {
  margin-bottom: 8px;
  font-size: 2rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  font-family: "Bebas Neue Book";
}

.legal p { margin: 0 0 12px 0; }


/* ================= LOADER ================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #1c1a2b;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.loader.hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  pointer-events: none;
}

.loader.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}


/* ================= LOGO BACKGROUND LOADER ================= */
.loader-bg-logo {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s ease, transform 1.2s ease;
  margin-top: -100px;
}

.loader .loader-bg-logo {
  opacity: 0.6;
  transform: scale(1);
  animation: breathe 6s ease-in-out infinite;
}

.loader-bg-logo .bg-logo-svg {
  width: 80vw;
  max-width: 900px;
  height: auto;
  color: white;
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,0.12))
    drop-shadow(0 0 30px rgba(255,255,255,0.06));
}

.loader-bg-logo .bg-logo-svg path { fill: white; }


/* ================= ANIMATION G / J ================= */
.loader .reveal-g {
  animation: revealG 2.5s ease forwards;
  transform: translateX(-100px);
}

.loader .reveal-j {
  animation: revealJ 2.5s ease forwards;
  animation-delay: 0.3s;
  transform: translateX(100px);
}

@keyframes revealG {
  from { width: 0%; }
  to   { width: 100%; }
}

@keyframes revealJ {
  from { x: 100%; width: 0%; }
  to   { x: 0%;   width: 100%; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.02); }
}


/* ================= TICKER ================= */
.ticker-bar {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 8px 0;
  position: sticky;
  top: 50px;
  z-index: 2999;
  backdrop-filter: blur(8px);
}

/* Desktop : texte fixe centré, pas d'animation */
.ticker-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  animation: none;
}

.ticker-content .ticker-repeat {
  display: none; /* doublon masqué sur desktop */
}

.ticker-content span {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  padding: 0 40px;
  white-space: nowrap;
}

.ticker-content span a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s ease;
  margin: 0;
  font-size: 12px;
}

.ticker-content span a:hover {
  color: white;
  border-bottom-color: white;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ================= NAV BAR ================= */
.nav-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  z-index: 3000;
  transition: background 0.4s ease;
  opacity: 0;
  animation: navEnter 0.8s ease forwards;
}

@keyframes navEnter { to { opacity: 1; } }

.nav-left {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  color: white;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}


/* ================= BURGER ================= */
.burger {
  display: flex;
  flex-direction: column;
  gap: 1px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.nav-right:hover .burger span:nth-child(1) { transform: translateY(-1px); }
.nav-right:hover .burger span:nth-child(3) { transform: translateY(1px); }

.nav-right.active .burger span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.nav-right.active .burger span:nth-child(2) {
  transform: rotate(-45deg) translateY(-6px);
}

body.menu-open {
  overflow: hidden;
  padding-right: 15px;
}


/* ================= MENU OVERLAY ================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1c1a2b;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-40px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.menu-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.menu-content {
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.menu-content a {
  font-family: "Bebas Neue";
  font-size: 4vw;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
  position: relative;
}

.menu-overlay.active .menu-content a {
  opacity: 1;
  transform: translateY(0);
}

.menu-content a:nth-child(1) { transition-delay: 0.25s; }
.menu-content a:nth-child(2) { transition-delay: 0.35s; }
.menu-content a:nth-child(3) { transition-delay: 0.45s; }
.menu-content a:nth-child(4) { transition-delay: 0.55s; }

.menu-content a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 0 6px rgba(255,255,255,0.2);
  transition: width 0.4s ease;
}

.menu-content a:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.menu-content a:hover::after { width: 100%; }


/* ================= LOGO BACKGROUND MENU ================= */
.menu-bg-logo {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scale(0.92);
  filter: blur(1px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.bg-logo-svg {
  width: 80vw;
  max-width: 900px;
  height: auto;
  color: white;
  will-change: transform;
}

.bg-logo-svg path { fill: currentColor; }

.menu-overlay.active .menu-bg-logo {
  opacity: 0.05;
  transform: scale(1);
  animation: breathe 6s ease-in-out infinite;
}

.menu-overlay.active .reveal-g { animation: revealG 2.5s ease forwards; }
.menu-overlay.active .reveal-j {
  animation: revealJ 2.5s ease forwards;
  animation-delay: 0.3s;
}


/* ================= MONOGRAMME NAV ================= */
.logo-wrapper { display: flex; align-items: center; }

.logo-svg {
  width: clamp(22px, 2.5vw, 32px);
  height: auto;
  color: rgba(255,255,255,0.9);
  transform: scale(var(--scale, 1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-svg path { fill: currentColor; stroke: none; }

#G, #J {
  transform-origin: center;
  transition: transform 0.3s ease;
}

#G {
  transform: translateX(-5px);
  animation: showG 0.6s ease forwards;
}

#J {
  transform: translateX(5px);
  animation: showJ 0.6s ease forwards;
  animation-delay: 0.2s;
}

@keyframes showG { to { transform: translateX(0); } }
@keyframes showJ { to { transform: translateX(0); } }

.reveal-g-menu { animation: revealG 2s ease forwards; }
.reveal-j-menu {
  animation: revealJ 2s ease forwards;
  animation-delay: 0.3s;
}

.logo-wrapper:hover .logo-svg {
  --scale: 1.06;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.25));
}

.logo-wrapper:hover #G { transform: translate(-2px, -1px) scale(1.04); }
.logo-wrapper:hover #J { transform: translate(2px, 1px) scale(1.04); }


/* ================= ICON INSTAGRAM ================= */
.nav-instagram {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: 0.3s ease;
}

.nav-instagram:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.icon-instagram {
  width: 25px;
  fill: white;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-instagram:hover .icon-instagram {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.2));
}


/* ================= SECTIONS ================= */
section { position: relative; }

section:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255,255,255,0.05);
}

section:not(.hero) {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 40% 40%, #4a4a68, #1c1a2b);
}

.hero-img {
  position: absolute;
  left: 25%;
  bottom: 0;
  transform: translateX(-50%);
  height: 95%;
  z-index: 2;
  filter: brightness(0.85) contrast(0.9);
}

.hero-text {
  position: absolute;
  right: 10%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-text h1 {
  font-size: 6rem;
  line-height: 1.2;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 100;
  color: rgba(255,255,255,0.9);
}

.hero-text p {
  font-family: "Bebas Neue Book";
  font-size: 4rem;
  line-height: 1.5;
  margin: 10px 0;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
}

.hero-info {
  margin-top: 60px;
  margin-left: 4px;
  display: flex;
  gap: 60px;
}

.info-block:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 30px;
}

.info-block { display: flex; flex-direction: column; }

.info-block p {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  font-family: "Bebas Neue Book";
}

.info-block span {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  font-family: "Bebas Neue";
}


/* ================= BIO ================= */
.bio {
  padding: 140px 20px;
  text-align: left;
  margin: auto;
  max-width: 80vw;
}

.bio p {
  font-size: 2rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  font-family: "Bebas Neue Book";
}

.bio p, .album-panel p {
  letter-spacing: 1.5px;
  line-height: 1.7;
  max-width: 750px;
}

/* bio-text : texte entier par défaut (desktop), collapse géré par JS en responsive */
.bio-text {
  position: relative;
  overflow: visible;
}

/* album-text : idem */
.album-text {
  position: relative;
  overflow: visible;
}

.bio-ellipsis { transition: opacity 0.3s ease; }
.bio.expanded .bio-ellipsis { opacity: 0; }

.bio-toggle {
  display: none; /* affiché par media query */
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 12px;
}

.bio-toggle:hover {
  transform: translateX(8px);
  opacity: 1;
  color: white;
}


/* ================= ALBUM ================= */
.album {
  padding: 140px 20px;
  text-align: left;
  margin: auto;
  max-width: 80vw;
}

.album-container {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.album-visuel { flex: 0 0 45%; }

.album-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s ease;
}

.album-visual:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.album-content {
  flex: 0 0 55%;
  margin-top: 0 !important;
  padding-left: 80px;
}

.album-title {
  font-family: "Bebas Neue Book", sans-serif;
  font-size: 4rem;
}

.tracklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(8, auto);
  grid-auto-flow: column;
  gap: 8px 20px;
}

.tracklist li {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: start;
  opacity: 0.7;
  transition: 0.3s ease;
  margin: 0;
  font-family: 'Manrope', sans-serif !important;
  color: rgba(255,255,255,0.8);
}

.tracklist .num { opacity: 0.5; }
.tracklist .title { white-space: normal; }

.tracklist li:hover {
  transform: translateX(8px);
  opacity: 1;
  color: white;
}

.album-switch {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
  min-height: 24px;
}

.tab {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.4;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.tab:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.tab.active { opacity: 1; }

.tab::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: white;
  transition: width 0.4s ease;
}

.tab.active::after { width: 100%; }

.album-panels {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.album-panel {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(40px) scale(0.98);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.album-panel.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.album-panel.out {
  opacity: 0;
  transform: translateX(-40px) scale(0.98);
}

.album-panel p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
}

/* album-text : géré en hauteur par le JS */
.album-text {
  position: relative;
  overflow: hidden;
}

.album-ellipsis { transition: opacity 0.3s ease; }
.album.expanded .album-ellipsis { opacity: 0; }

.album-toggle {
  display: none; /* affiché par media query */
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 12px;
}

.album-toggle:hover {
  transform: translateX(8px);
  opacity: 1;
  color: white;
}


/* ================= ECOUTER ================= */
.ecouter { width: 100%; }

.ecouter-bg {
  width: 100%;
  padding: 120px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.ecouter-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.ecouter-wrapper {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-album {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 30px;
  background: white;
  color: #1c1a2b;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.btn-primary-outline {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-primary-outline:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: white;
  color: white;
}

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.btn-cta {
  padding: 14px 26px;
  border-radius: 6px;
  background: white;
  color: #1c1a2b;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.payment-info {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 10px;
  text-align: center;
}


/* ================= CONCERT ================= */
.concert {
  padding: 140px 20px;
  margin: auto;
  max-width: 80vw;
  text-align: left;
}

.concert-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  flex-direction: row-reverse;
}

.concert-visual {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
}

.concert-visual img {
  width: 100%;
  max-width: 320px;
  opacity: 0.9;
  filter: brightness(0.95);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.5),
    0 5px 20px rgba(0,0,0,0.3);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease,
    opacity 0.6s ease;
}

.concert-visual:hover img {
  transform: scale(1.04);
  opacity: 1;
  filter: brightness(1.05);
}

.concert-content {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.concert-intro p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
}

.concert-intro span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
  color: rgba(255,255,255,0.6);
}

.concert-info {
  display: inline-block;
  margin-top: 50px;
  padding-left: 25px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.concert-meta {
  display: flex;
  align-items: center;
  margin: 20px;
}

.concert-meta-text { display: flex; flex-direction: column; }

.concert-date {
  font-size: 28px;
  letter-spacing: 2px;
  font-family: "Bebas Neue";
  color: white;
  margin: 0;
}

.concert-location {
  font-size: 18px;
  opacity: 0.6;
  margin: 0;
}

.btn-primary-concert {
  margin-left: 100px;
  padding: 10px 20px;
  border-radius: 30px;
  background: white;
  color: #1c1a2b;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-primary-concert:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}


/* ================= GALLERY ================= */
.gallery {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 20px;
  margin: auto;
  max-width: 80vw;
  overflow: hidden;
}

.gallery-credit {
  margin-top: 0;
  margin-bottom: 24px;
}

.gallery-switch {
  margin-top: 8px;
  margin-bottom: 20px;
}

.gallery-credit {
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-align: left;
}

.gallery-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.gallery-track img {
  height: clamp(160px, 30vw, 300px);
  width: auto;
  flex-shrink: 0;
  transform: scale(0.9);
  transition:
    transform 0.4s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.gallery-track img:hover {
  opacity: 1 !important;
  transform: scale(1.1) !important;
  filter: brightness(1) !important;
  z-index: 10;
}

.gallery-track:hover img:not(:hover) { opacity: 0.3; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.gallery-dots span {
  position: relative;
  width: 30px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-dots span::before {
  content: "";
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.gallery-dots span.active::before {
  background: white;
  transform: scaleX(1.6);
}

/* ================= GALLERY TABS ================= */
.gallery-switch {
  display: flex;
  gap: 25px;
  margin-bottom: 16px;
}

.gallery-tab {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.4;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.gallery-tab:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.gallery-tab.active { opacity: 1; }

.gallery-tab::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: white;
  transition: width 0.4s ease;
}

.gallery-tab.active::after { width: 100%; }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }


/* ================= LIGHTBOX ================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: #1c1a2b;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

body.lightbox-open { overflow: hidden; }

.lightbox-inner {
  position: relative;
  display: inline-block;
}

.lightbox-zone {
  position: absolute;
  top: 0;
  height: 100%;
  width: clamp(60px, 8vw, 120px);
  cursor: pointer;
  z-index: 5;
}

.lightbox-zone.left  { left: 0; }
.lightbox-zone.right { right: 0; }

.lightbox-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: 0.3s;
}

.lightbox-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: rgba(255,255,255,0);
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 6;
}

.lightbox-indicator.left  { left: 15px; }
.lightbox-indicator.right { right: 15px; }

.lightbox-zone.left:hover + .lightbox-indicator.left  { color: rgba(255,255,255,0.6); }
.lightbox-zone.right:hover ~ .lightbox-indicator.right { color: rgba(255,255,255,0.6); }
.lightbox-zone:hover::after { background: rgba(255,255,255,0.05); }

@media (hover: none) { .lightbox-zone { display: none; } }


/* ================= CLOSING ================= */
section.closing::before,
section.footer::before { display: none; }

.closing {
  padding: 120px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 40%, transparent 70%),
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: cover, 4px 4px;
}

.closing-text {
  max-width: 600px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  font-style: italic;
}

.highlight {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.5;
  max-width: 720px;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.closing .secondary {
  opacity: 0;
  transform: translateY(10px);
  margin-bottom: -20px;
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.closing-signature {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

.signature-svg {
  margin-top: -10px;
  width: 260px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  color: rgba(255,255,255,0.9);
  transition:
    opacity 1s ease 0.6s,
    transform 1s ease 0.6s,
    filter 0.4s ease;
}

.signature-svg path { fill: currentColor; }

.closing-signature:hover .signature-svg {
  transform: translateY(-2px) scale(1.02);
  filter:
    drop-shadow(0 4px 12px rgba(255,255,255,0.15))
    drop-shadow(0 0 6px rgba(255,255,255,0.1));
}

.closing.visible .highlight,
.closing.visible .secondary {
  opacity: 1;
  transform: translateY(0);
}

.closing.visible .closing-signature { opacity: 1; transform: translateY(0); }

.closing.visible .signature-svg {
  opacity: 0.9;
  transform: translateY(0) scale(1);
}


/* ================= REVEAL TEXT ================= */
.reveal-text span {
  opacity: 0;
  transform: translateY(12px);
  display: inline-block;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal-text.visible span {
  opacity: 1;
  transform: translateY(0);
}


/* ================= FOOTER ================= */
.footer {
  padding: 60px 20px;
  text-align: center;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 700px;
  margin: auto;
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

a, .footer-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: 0.3s ease;
  margin: 10px;
}

.footer-links a:hover {
  transform: translateY(-2px);
  color: rgba(255,255,255,0.7);
}

.footer-asso {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-asso-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.footer-logo {
  width: clamp(90px, 10vw, 130px);
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
  transform: translateY(-2px) scale(1.02);
  filter:
    drop-shadow(0 4px 12px rgba(255,255,255,0.15))
    drop-shadow(0 0 6px rgba(255,255,255,0.1));
}


/* =================================================================================
   RESPONSIVE
   1. Tablette + iPad paysage  →  < 1180px
   2. Mobile portrait          →  < 768px
   3. Mobile paysage petit     →  hauteur < 500px landscape
================================================================================= */

/* ================= 1. TABLETTE + IPAD PAYSAGE ================= */
@media (max-width: 1180px) {

  .nav-menu { display: none; }

  /* TICKER : animé sur tablette/mobile */
  .ticker-content {
    display: flex;
    justify-content: flex-start;
    width: max-content;
    animation: ticker 10s linear infinite;
  }

  .ticker-content .ticker-repeat {
    display: inline; /* réactive le doublon pour la boucle */
  }

  .ticker-bar:hover .ticker-content {
    animation-play-state: paused;
  }

  .ticker-content span {
    padding: 0 40px;
    font-size: 11px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* HERO */
  .hero-img { left: 20%; height: 88%; }

  .hero-text {
    right: 5%;
    top: 38%;
    max-width: 420px;
  }

  .hero-text h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
  .hero-text p  { font-size: clamp(1.5rem, 3.5vw, 3rem); }

  .hero-info {
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
  }

  .info-block:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

  .info-block p,
  .info-block span { font-size: clamp(0.8rem, 1.8vw, 1.1rem); }

  /* BIO */
  .bio {
    padding: 80px 20px;
    text-align: center;
    max-width: 85vw;
  }

  .bio-toggle { display: inline-block; }

  /* ALBUM */
  .album {
    padding: 80px 20px;
    text-align: center;
    max-width: 85vw;
  }

  .album-container {
    flex-direction: column;
    align-items: center;
  }

  .album-visual img {
    width: 55vw;
    margin: 0 auto;
  }

  .album-content {
    padding-left: 0;
    width: 100%;
    margin-top: 40px !important;
  }

  .album-title { text-align: center; }

  .tracklist {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

  .album-toggle { display: inline-block; }

  /* CONCERT */
  .concert {
    padding: 80px 20px;
    max-width: 85vw;
    text-align: center;
  }

  .concert-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .concert-visual { flex: none; width: 100%; justify-content: center; }
  .concert-visual img { width: 45vw; max-width: 320px; }

  .concert-content {
    flex: none;
    width: 100%;
    text-align: center;
    gap: 20px;
  }

  .concert-info {
    border-left: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .concert-meta {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0;
  }

  .btn-primary-concert {
    margin-left: 0;
    margin-top: 10px;
  }

  /* GALLERY */
  .gallery { max-width: 90vw; text-align: center; }

  .gallery h2,
  .gallery-credit { text-align: center; }

  .gallery-credit {
    margin-top: 10px;
    margin-bottom: 40px;
  }

  /* MENU */
  .menu-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .menu-content a {
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: 4px;
  }

  /* CLOSING */
  .closing { padding: 80px 20px; }
}


/* ================= 2. MOBILE PORTRAIT ================= */
@media (max-width: 768px) {

  /* TICKER */
  .ticker-content span {
    font-size: 11px;
    padding: 0 30px;
    letter-spacing: 1px;
  }

  /* HERO */
.hero-img {
  left: 15%;
  transform: translateX(-50%);
  height: 82%;
}

.hero-text {
  right: 3%;
  top: 35%;
  max-width: 240px;
}

.hero-text h1 { font-size: clamp(2.2rem, 11vw, 4rem); }
.hero-text p  { font-size: clamp(1.2rem, 6vw, 2rem); }

.info-block p,
.info-block span { font-size: clamp(0.8rem, 4vw, 1rem); }

  /* BIO */
  .bio { padding: 60px 20px; max-width: 90vw; }

  /* ALBUM */
  .album { padding: 60px 20px; max-width: 100%; }
  .album-visual img { width: 80vw; }

  .tracklist {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  /* ECOUTER */
  .ecouter-bg { padding: 80px 20px; }

  .cta-album {
    flex-direction: column;
    align-items: center;
  }

  /* CONCERT */
  .concert { padding: 60px 20px; max-width: 100%; }
  .concert-visual img { width: 80vw; }

  /* CLOSING */
  .closing { padding: 60px 20px; }
  .closing-text { max-width: 90%; }
  .signature-svg { width: 200px; }
}


/* ================= 3. MOBILE PAYSAGE PETIT ÉCRAN ================= */
@media (max-height: 500px) and (orientation: landscape) {

  body { overflow-y: auto; }

  section {
    min-height: auto;
    height: auto;
    display: block;
    padding: 60px 20px;
  }

  .hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
    min-height: auto;
  }

  .hero img { max-height: 70vh; width: auto; }

  .nav-bar { padding: 10px 20px; }
}