/* ==========================================================================
   GUNFISH OK — feuille de style principale
   ========================================================================== */

:root {
  --bg: #0f0f12;
  --bg-alt: #17171c;
  --card: #1d1d24;
  --text: #f2f1ef;
  --text-dim: #a6a3ad;
  --accent: #e0533d;
  --accent-soft: #f2a58f;
  --border: #2a2a33;
  --max: 1080px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* --------------------------------------------------------- Bascule FR/EN */
[data-lang-fr], [data-lang-en] { display: none; }
html[lang="fr"] [data-lang-fr] { display: revert; }
html[lang="en"] [data-lang-en] { display: revert; }

/* ------------------------------------------------------------ Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  background: rgba(15, 15, 18, 0);
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(15, 15, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav__brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-size: 1rem;
  color: var(--text);
  margin-right: auto;
}
.nav__brand span { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 22px;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--text); }

.lang {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang button {
  background: none;
  border: 0;
  color: var(--text-dim);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang button[aria-pressed="true"] { background: var(--accent); color: #fff; }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1rem;
}

/* ----------------------------------------------------------------- Boutons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { opacity: 0.92; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent-soft); }

/* -------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 120px 24px 70px;
  background:
    linear-gradient(180deg, rgba(15,15,18,0.45) 0%, rgba(15,15,18,0.55) 50%, var(--bg) 100%),
    url("../img/hero.jpg") center 28% / cover no-repeat;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-soft);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--accent);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.hero__tagline {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 30px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero__scroll {
  margin-top: 46px;
  font-size: 1.4rem;
  color: var(--text-dim);
  text-decoration: none;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------------------------------------------------------------- Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 24px;
  border-top: 1px solid var(--border);
}
.section__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.section__lead {
  color: var(--text-dim);
  margin-bottom: 34px;
  max-width: 620px;
}

/* --------------------------------------------------------------- À propos */
.about p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 660px;
  margin-bottom: 18px;
}
.about blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin-top: 28px;
  font-style: italic;
  color: var(--text);
  max-width: 660px;
}

/* --------------------------------------------------------------- Concerts */
.shows { list-style: none; }
.show {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.show__date {
  width: 76px;
  flex-shrink: 0;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 4px;
}
.show__day { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.show__month {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.show__info { flex: 1; min-width: 200px; }
.show__venue { font-weight: 700; font-size: 1.05rem; }
.show__city { color: var(--text-dim); font-size: 0.9rem; }
.show .btn { padding: 9px 20px; font-size: 0.82rem; }

/* ----------------------------------------------------------------- Écouter */
.spotify { margin-bottom: 44px; }
.spotify iframe {
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: var(--radius);
  background: var(--card);
}

.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.video { display: flex; flex-direction: column; gap: 10px; }
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card) center / cover no-repeat;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  width: 100%;
}
.video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease;
}
.video__frame:hover::after { background: rgba(0, 0, 0, 0.1); }
.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.video__frame:hover .video__play { transform: scale(1.08); }
.video__play::before {
  content: "";
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.video__title { font-weight: 700; font-size: 0.98rem; }
.video__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  white-space: nowrap;
}

/* ------------------------------------------------------------- Le groupe */
.members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}
.member { text-align: center; }
.member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.member__name { font-weight: 700; font-size: 1.02rem; }
.member__role { color: var(--text-dim); font-size: 0.85rem; }

/* ----------------------------------------------------------------- Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.gallery button {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  cursor: pointer;
  display: block;
}
.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.gallery button:hover img { transform: scale(1.05); opacity: 0.9; }
.credit { color: var(--text-dim); font-size: 0.78rem; margin-top: 16px; }

/* --------------------------------------------------------------- Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 10px; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------- Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--accent-soft); }

.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.socials a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.socials a:hover { border-color: var(--accent-soft); color: var(--accent-soft); }

.form { display: flex; flex-direction: column; gap: 14px; }
.form label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 6px;
  display: block;
}
.form input,
.form textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
.form input:focus,
.form textarea:focus { outline: none; border-color: var(--accent); }
.form textarea { min-height: 130px; resize: vertical; }
.form__hp { position: absolute; left: -9999px; }
.form__status {
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 10px;
  display: none;
}
.form__status.is-ok { display: block; background: rgba(76, 175, 80, 0.14); color: #a5d6a7; }
.form__status.is-error { display: block; background: rgba(224, 83, 61, 0.14); color: var(--accent-soft); }

/* ------------------------------------------------------------------ Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 34px 24px 46px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* -------------------------------------------------------------- Responsive */
@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(15, 15, 18, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { padding: 0 24px; }
  .nav__links a { display: block; padding: 12px 0; font-size: 0.95rem; }
  .nav__toggle { display: block; order: 3; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 64px 20px; }
  /* Version portrait du hero : le groupe reste entièrement visible */
  .hero {
    padding-bottom: 54px;
    background:
      linear-gradient(180deg, rgba(15,15,18,0.35) 0%, rgba(15,15,18,0.1) 36%, rgba(15,15,18,0.6) 58%, var(--bg) 100%),
      url("../img/hero-mobile.jpg") center top / cover no-repeat;
  }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
