/* ==========================================================================
   BANG!! 2026 — Feuille de style commune
   bang-style.css — v1.0
   À inclure dans TOUTES les pages via :
   <link rel="stylesheet" href="bang-style.css">
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs */
  --beige:   #e3e2dd;          /* fond général */
  --gris:    #161819;          /* fond nav + footer + headers sombres */
  --rouge:   #ff3d1f;          /* accent principal */
  --blanc:   #ffffff;          /* surfaces claires */
  --texte:   #161819;          /* texte courant */
  --texte-d: rgba(22,24,25,0.55); /* texte secondaire / atténué */
  --sep:     rgba(22,24,25,0.1);  /* séparateurs */

  /* Typographies */
  --font-h:  'Anton', 'Arial Black', sans-serif;        /* titres display */
  --font-sh: 'Oswald', 'Arial Narrow', sans-serif;      /* sous-titres / nav */
  --font-b:  'IBM Plex Sans', system-ui, sans-serif;    /* corps de texte */

  /* Transition globale */
  --tr: all 0.15s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  color: var(--texte);
  background: var(--beige);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   3. GESTION DES LANGUES
   -------------------------------------------------------------------------- */
[data-lang]              { display: none; }
[data-lang].actif        { display: block; }
[data-lang-inline]       { display: none; }
[data-lang-inline].actif { display: inline !important; }

/* --------------------------------------------------------------------------
   4. CONTENEUR
   -------------------------------------------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--gris);
  border-bottom: 3px solid var(--rouge);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 54px;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--beige);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--rouge); }

.nav-links {
  display: flex;
  list-style: none;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  display: block;
  padding: 0 0.65rem;
  font-family: var(--font-sh);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(227,226,221,0.55);
  text-decoration: none;
  line-height: 54px;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.actif { color: var(--beige); }

.nav-boutique a { color: var(--rouge) !important; }

.nav-langue {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: 0.5rem;
}
.nav-social-icon {
  display: flex;
  align-items: center;
  color: var(--beige);
  opacity: 0.7;
  transition: opacity 0.15s ease;
}
.nav-social-icon:hover { opacity: 1; }
.nav-mobile-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.nav-langue button {
  background: none;
  border: 1px solid rgba(227,226,221,0.25);
  color: rgba(227,226,221,0.5);
  font-family: var(--font-sh);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.55rem;
  cursor: pointer;
  transition: var(--tr);
}
.nav-langue button:hover,
.nav-langue button.actif {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--blanc);
}

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--beige);
}

/* Menu mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 54px 0 0 0;
  background: var(--gris);
  z-index: 190;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.2rem;
  overflow-y: auto;
}
.nav-mobile-overlay.ouvert { display: flex; }

.nav-mobile-overlay a {
  display: block;
  padding: 0.8rem 1rem;
  font-family: var(--font-sh);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(227,226,221,0.7);
  text-decoration: none;
}
.nav-mobile-overlay a:hover,
.nav-mobile-overlay a.actif { color: var(--beige); }
.nav-mobile-overlay .nav-boutique-m a { color: var(--rouge); }

.nav-mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(227,226,221,0.1);
}
.nav-mobile-lang button {
  background: none;
  border: 1px solid rgba(227,226,221,0.25);
  color: rgba(227,226,221,0.6);
  font-family: var(--font-sh);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}
.nav-mobile-lang button.actif {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--blanc);
}

@media (max-width: 760px) {
  .nav-links  { display: none; }
  .nav-langue { display: none; }
  .nav-burger { display: flex; }
}

/* --------------------------------------------------------------------------
   6. TYPOGRAPHIE COMMUNE (surtitre, titre-page, titre-section)
   -------------------------------------------------------------------------- */
.surtitre {
  font-family: var(--font-sh);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 0.75rem;
}

.titre-page {
  font-family: var(--font-h);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--beige);          /* sur fond sombre (hero/header) */
  letter-spacing: -0.01em;
}

.titre-section {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--texte);          /* sur fond clair (main) */
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   7. HERO / PAGE-HEADER (structure commune)
   Chaque page surcharge les classes spécifiques via son propre <style>
   -------------------------------------------------------------------------- */
.page-header {
  background: var(--gris);
  border-bottom: 1px solid rgba(227,226,221,0.1);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* Filigrane décoratif (personnalisé par page via ::after + content) */
.page-header::after {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 12rem);
  color: rgba(227,226,221,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   8. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--gris);
  border-top: 3px solid var(--rouge);
  padding: 1.75rem 0 1.25rem;
}

.footer-brand {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--beige);
  text-decoration: none;
  display: block;
}
.footer-brand span { color: var(--rouge); }

.footer-tagline {
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(227,226,221,0.4);
  margin-top: 0.3rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.75rem;
}
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(227,226,221,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--beige); }

.footer-contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-sh);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--tr);
}
.btn-ig {
  background: rgba(227,226,221,0.08);
  color: var(--beige);
  border: 1px solid rgba(227,226,221,0.2);
}
.btn-ig:hover { background: rgba(227,226,221,0.15); }
.btn-wa  { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; }

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(227,226,221,0.1);
  margin-top: 0.75rem;
}
.footer-logos img {
  height: 30px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}
.footer-logos img.logo-mutte {
  height: 36px;
  filter: none;
  background: white;
  border-radius: 3px;
  padding: 2px 5px;
}

.footer-bas {
  padding-top: 1rem;
  border-top: 1px solid rgba(227,226,221,0.08);
  margin-top: 1rem;
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(227,226,221,0.3);
}

.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.footer-legal-links a { font-size: 0.78rem; color: rgba(227,226,221,0.35); text-decoration: none; transition: color 0.15s; }
.footer-legal-links a:hover { color: rgba(227,226,221,0.7); }

/* --------------------------------------------------------------------------
   9. UTILITAIRES COMMUNS
   -------------------------------------------------------------------------- */
.sep {
  border: none;
  border-top: 1px solid var(--sep);
  margin: 3rem 0;
}

/* Boutons génériques */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-sh);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--tr);
}
.btn-primary {
  background: var(--rouge);
  color: var(--blanc);
}
.btn-primary:hover { background: #e02d10; }

.btn-outline {
  background: none;
  color: var(--texte);
  border: 2px solid var(--texte);
}
.btn-outline:hover {
  background: var(--texte);
  color: var(--beige);
}

/* --------------------------------------------------------------------------
   10. FICHES ARTISTES
   -------------------------------------------------------------------------- */
.fiche-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
