:root {
  --bg: #dce4f0;
  --bg2: #ccd6e8;
  --blue-pale: #1a2540;
  --blue-mid: #2a4a8a;
  --blue-glow: #3a60b8;
  --accent: #1a3070;
  --white: #0d1a30;
  --text: #1a2540;
  --muted: #4a5a7a;
  --border: rgba(30,60,120,0.15);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}




/* ============ NAV ============ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  display: flex; align-items:center; justify-content:space-between;
  padding: 1.2rem 3rem;
  background: rgba(220,228,240,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style:none;
}

.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content:'';
  position:absolute; bottom:-4px; left:0; right:0; height:1px;
  background: var(--blue-glow);
  transform: scaleX(0); transform-origin:left;
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ============ HERO SLIDER ============ */
#home {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) { background-image: url('../img/hero1.jpg'); }
.hero-slide:nth-child(2) { background-image: url('../img/hero2.jpg'); background-position: center 15%; }

.hero-gradient {
  position:absolute; inset:0; z-index:1;
  background: none;
}

.hero-content {
  position:relative; z-index:2;
  padding: 0 3rem; max-width:900px;
}

h1.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #0d1a30;
  text-shadow: 0 2px 20px rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.hero-sub {
  font-family: 'Syne', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight:700; letter-spacing:0.25em; text-transform:uppercase;
  color: var(--blue-pale);
  margin-bottom: 2.5rem;
}

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 2.5rem; left: 3rem;
  display: flex; gap: 0.6rem; z-index: 3;
}

.hero-dot {
  width: 28px; height: 2px;
  background: rgba(26,37,64,0.25);
  border: none; cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--blue-mid);
  width: 48px;
}

/* Slider arrows */
.hero-arrows {
  position:absolute; bottom: 2.2rem; right: 3rem;
  display:flex; gap:0.8rem; z-index:3;
}

.hero-arrow {
  background: rgba(26,37,64,0.15);
  border: 1px solid rgba(26,37,64,0.3);
  color: var(--text);
  width: 40px; height: 40px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:1rem;
  transition: background 0.3s, border-color 0.3s;
  border-radius: 2px;
}

.hero-arrow:hover {
  background: var(--blue-glow);
  border-color: var(--blue-glow);
  color: #fff;
}

.hero-scroll {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  font-family:'Syne',sans-serif; font-size:0.6rem; letter-spacing:0.3em;
  color: var(--muted); text-transform:uppercase; z-index:2;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content:''; display:block; width:1px; height:40px;
  background: linear-gradient(to bottom, var(--blue-mid), transparent);
}
@keyframes bounce {
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(8px); }
}

/* ============ SECTIONS ============ */
section { position:relative; z-index:1; }

.section-inner {
  max-width: 1200px; margin:0 auto;
  padding: 5rem 3rem;
}

.section-label {
  font-family:'Syne',sans-serif; font-size:0.65rem; font-weight:700;
  letter-spacing:0.5em; text-transform:uppercase; color:var(--blue-mid);
  margin-bottom:1rem; display:flex; align-items:center; gap:1rem;
}

.section-label::before {
  content:''; display:block; width:24px; height:1px;
  background: var(--blue-mid);
}

h2.section-title {
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(2.5rem,6vw,4rem);
  letter-spacing:0.06em; color:var(--white);
  margin-bottom:3rem;
  line-height:1;
}

/* ============ VIDEO ============ */
#video {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.video-wrapper {
  position:relative; padding-bottom:56.25%; height:0; overflow:hidden;
  border-radius:4px;
  box-shadow: 0 0 80px rgba(74,128,212,0.2);
}

.video-wrapper iframe {
  position:absolute; top:0; left:0; width:100%; height:100%;
  border:none;
}

/* ============ BIOGRAPHIE ============ */
#about { background: var(--bg); }

.bio-grid {
  display:grid; grid-template-columns:1fr 380px; gap:4rem; align-items:start;
}

.bio-text { font-size:0.9rem; line-height:1.9; color: var(--text); }
.bio-text p { margin-bottom:1.2rem; }
.bio-text strong { color: var(--accent); font-weight:700; }

.bio-links {
  display:flex; flex-wrap:wrap; gap:0.8rem; margin-top:2rem;
}

.bio-links a {
  font-family:'Syne',sans-serif; font-size:0.7rem; font-weight:700;
  letter-spacing:0.15em; text-transform:uppercase;
  color: var(--blue-mid);
  text-decoration:none; padding:0.5rem 1.2rem;
  border:1px solid var(--blue-glow);
  border-radius:2px;
  transition: all 0.3s;
}

.bio-links a:hover { background: var(--blue-glow); color:var(--white); }

.bio-img {
  width:100%; aspect-ratio:3/4; object-fit:cover;
  border-radius:2px;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(74,128,212,0.1);
  filter: brightness(0.85) saturate(1.2);
}

/* ============ DISCOGRAPHIE ============ */
#discography {
  background: var(--bg2);
  border-top:1px solid var(--border);
}

.disco-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap:1.5rem;
}

.disco-item {
  position:relative; overflow:hidden;
  border-radius:2px;
  border:1px solid var(--border);
  transition: transform 0.4s, box-shadow 0.4s;
  background: rgba(255,255,255,0.02);
}

.disco-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(74,128,212,0.2);
  border-color: var(--blue-glow);
}

.disco-item img {
  width:100%; aspect-ratio:1; object-fit:cover; display:block;
  filter: brightness(0.8) saturate(1.1);
  transition: filter 0.4s;
}

.disco-item:hover img { filter: brightness(1) saturate(1.3); }

.disco-info { padding:1rem; }

.disco-info h3 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.1rem; letter-spacing:0.05em;
  color:var(--white); margin-bottom:0.3rem;
}

.disco-info span {
  font-size:0.7rem; color:var(--muted);
  font-family:'Syne',sans-serif; letter-spacing:0.1em;
  text-transform:uppercase;
}

.disco-item > a {
  position:absolute; inset:0; z-index:1;
}

/* ============ LIVE DATES ============ */
#dates {
  background: var(--bg);
  border-top:1px solid var(--border);
}

.dates-layout {
  display:grid; grid-template-columns:1fr 380px; gap:4rem; align-items:start;
}

.dates-list { list-style:none; }

.dates-list li {
  display:flex; align-items:baseline; gap:1.5rem;
  padding:1rem 0;
  border-bottom:1px solid var(--border);
  transition: background 0.3s;
}

.dates-list li:hover { background: rgba(74,128,212,0.05); }

.date-d {
  font-family:'Bebas Neue',sans-serif;
  font-size:2rem; line-height:1;
  color: var(--blue-pale);
  min-width:60px;
}

.date-info { flex:1; }

.date-venue {
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:0.85rem; letter-spacing:0.1em; text-transform:uppercase;
  color: var(--white);
}

.date-place { font-size:0.75rem; color:var(--muted); margin-top:0.2rem; }

.dates-img {
  width:100%; aspect-ratio:1; object-fit:cover;
  border-radius:2px;
  filter: brightness(0.8) saturate(1.2);
  position:sticky; top:7rem;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

/* ============ MEMBRES ============ */
#band {
  background: var(--bg2);
  border-top:1px solid var(--border);
}

.band-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem;
  max-width:900px; margin:0 auto;
}

.member-card { text-align:center; }

.member-img {
  width:100%; aspect-ratio:3/4; object-fit:cover;
  border-radius:2px; margin-bottom:1.5rem;
  filter: brightness(0.85) saturate(1.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: filter 0.4s;
}

.member-card:hover .member-img { filter: brightness(1); }

.member-name {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.8rem; letter-spacing:0.1em;
  color:var(--white); margin-bottom:0.5rem;
}

.member-bio {
  font-size:0.8rem; line-height:1.8; color:var(--text);
  margin-bottom:1rem;
}

.member-link {
  font-family:'Syne',sans-serif; font-size:0.7rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--blue-mid); text-decoration:none;
  border-bottom:1px solid var(--blue-glow); padding-bottom:2px;
  transition: color 0.3s;
}

.member-link:hover { color:var(--accent); }

/* ============ GALLERY ============ */
#gallery {
  background: var(--bg);
  border-top:1px solid var(--border);
}

.gallery-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:0.5rem;
}

.gallery-item {
  overflow:hidden; cursor:pointer; position:relative;
  aspect-ratio:4/3;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio:16/9;
}

.gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.6s, filter 0.4s;
  filter: brightness(0.75) saturate(1.1);
}

.gallery-item:hover img {
  transform:scale(1.05);
  filter: brightness(0.9) saturate(1.4);
}

/* Lightbox */
#lightbox {
  display:none; position:fixed; inset:0; z-index:999;
  background: rgba(220,228,240,0.97);
  justify-content:center; align-items:center;
}

#lightbox.open { display:flex; }

#lightbox img {
  max-width:90vw; max-height:90vh; object-fit:contain;
  border-radius:2px;
}

#lightbox-close {
  position:absolute; top:2rem; right:2rem;
  background:none; border:none; color:var(--text);
  font-size:2rem; cursor:pointer; line-height:1;
}

/* ============ CONTACT ============ */
#contact {
  background: var(--bg2);
  border-top:1px solid var(--border);
}

.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:4rem;
}

.contact-block h3 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.5rem; letter-spacing:0.1em;
  color:var(--white); margin-bottom:1rem;
}

.contact-block p {
  font-size:0.85rem; line-height:1.9; color:var(--text);
  margin-bottom:0.5rem;
}

.contact-block a { color:var(--blue-mid); text-decoration:none; transition:color 0.3s; }
.contact-block a:hover { color:var(--accent); }

.contact-socials {
  display:flex; gap:1rem; margin-top:2rem; flex-wrap:wrap;
}

.contact-socials a {
  font-family:'Syne',sans-serif; font-size:0.65rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--muted); text-decoration:none;
  padding:0.6rem 1.2rem;
  border:1px solid var(--border); border-radius:2px;
  transition:all 0.3s;
}

.contact-socials a:hover {
  border-color:var(--blue-glow); color:var(--accent);
  background:rgba(74,128,212,0.08);
}

/* ============ FOOTER ============ */
footer {
  text-align:center; padding:2rem;
  font-size:0.65rem; color:var(--muted);
  letter-spacing:0.2em; text-transform:uppercase;
  border-top:1px solid var(--border);
}

/* ============ STREAMING LINKS (under disco) ============ */
.streaming-links {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.streaming-links a {
  font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue-mid); text-decoration: none;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--blue-glow); border-radius: 2px;
  transition: all 0.3s;
}

.streaming-links a:hover { background: var(--blue-glow); color: var(--white); }

/* ============ GALLERY CREDIT ============ */
.gallery-credit {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem; color: var(--muted);
  letter-spacing: 0.1em; margin-top: 1rem;
  text-align: right;
}

/* ============ LANG SWITCH ============ */
.lang-switch {
  background: none; border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; padding: 0.35rem 0.7rem;
  border-radius: 2px; transition: all 0.3s;
  white-space: nowrap;
}

.lang-switch:hover { border-color: var(--blue-glow); color: var(--blue-mid); }
.lang-switch .lang-active { color: var(--blue-mid); }
.lang-switch .lang-inactive { color: var(--muted); }

/* Lang content: EN hidden by default */
.lang-content-en { display: none; }

/* ============ HAMBURGER ============ */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 10000;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: all 0.35s; border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Tablets (769px–900px): full nav, tighter spacing ── */
@media(max-width:900px) and (min-width:769px) {
  .nav-links { gap: 1rem; }
  .nav-links a, .lang-switch { font-size: 0.62rem; }
  .bio-grid, .dates-layout, .contact-grid, .band-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .section-inner { padding: 4rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .hero-arrows { right: 1.5rem; }
  .hero-dots { left: 1.5rem; }
}

/* ── Smartphones (portrait + landscape) ≤ 768px ── */
@media(max-width:768px) {
  nav { padding: 0.9rem 1.2rem; }

  /* Show hamburger */
  .nav-toggle { display: block; }

  /* Panel latéral depuis la droite */
  .nav-links {
    display: none;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 72vw; max-width: 260px;
    background: rgba(220, 228, 240, 1);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; z-index: 9999;
    overflow-y: auto;
    padding: 4.5rem 1.5rem 2rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    width: 100%; text-align: left;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; padding-top: 0.8rem; }

  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text); display: block; padding: 0.6rem 0;
    font-family: 'Syne', sans-serif; font-weight: 700;
  }
  .nav-links a:hover { color: var(--blue-mid); }

  .lang-switch {
    font-size: 0.72rem; padding: 0.45rem 0.9rem;
    border-color: var(--blue-glow);
  }

  /* Hero slide 1 : léger décalage vers la droite par rapport au centre */
  .hero-slide-1 { background-position: center 20% !important; }

  /* Layout */
  .bio-grid, .dates-layout, .contact-grid, .band-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .section-inner { padding: 3.5rem 1.2rem; }
  .hero-arrows { right: 1rem; bottom: 1.5rem; }
  .hero-dots { left: 1rem; bottom: 1.5rem; }
  h1.hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .disco-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid { max-width: 100%; }
  .dates-img { display: none; }
  .contact-grid { gap: 2rem; }
  .streaming-links { gap: 0.5rem; }
  .streaming-links a { font-size: 0.6rem; padding: 0.4rem 0.8rem; }
}
