/* =================================================================
   ALUNI'SON - FICHIER CSS PRINCIPAL
   Fichier consolidé extrait des 3 fichiers HTML
   ================================================================= */

/* =================================================================
   IMPORTS & VARIABLES CSS COMMUNES
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --font-title: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Outfit', sans-serif;
  --orange-primary: #E7610D;
  --orange-light: #EF781C;
  --orange-glow: #EF781C;
  --orange-deep: #E7610D;
  --dark-bg: #0A0A0B;
  --dark-surface: #141416;
  --dark-elevated: #1C1C1F;
  --dark-border: #2A2A2E;
  --text-primary: #FAFAFA;
  --text-secondary: #A0A0A5;
  --text-muted: #6B6B70;
}

/* =================================================================
   RESET & STYLES DE BASE
   ================================================================= */

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

html {
  scroll-behavior: smooth;
}

body, .alunison-site, .faq-page {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  line-height: 1.6;
}

/* Ajout d'une marge de défilement pour que le menu ne cache pas le titre */
section[id] {
  scroll-margin-top: 100px;
}

/* Effet de texture grain sur tout le site */
.alunison-site::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 50;
}

/* =================================================================
   NAVIGATION (COMMUNE À TOUTES LES PAGES)
   ================================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1005;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 11, 0.8);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  width: 100%;
}

.nav.scrolled {
  padding: 1rem 2rem;
  background: rgba(10, 10, 11, 0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Mode mobile: header transparent quand menu ouvert */
@media (max-width: 768px) {
  .nav.menu-open {
    background: transparent;
    backdrop-filter: none;
  }
}

.nav-logo {
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1003;
  height: 45px;
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-cta,
.nav-cta-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-deep) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.nav-cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
}

.nav-cta-secondary:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  background: rgba(255, 107, 53, 0.05);
}

/* Bouton retour (page artistes) */
.btn-back {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--dark-border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: var(--orange-primary);
  color: var(--text-primary);
}

/* =================================================================
   MENU BURGER & MENU MOBILE (COMMUN À TOUTES LES PAGES)
   ================================================================= */

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1003;
  padding: 0.75rem;
  position: fixed;
  top: 0.75rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.burger-menu:focus {
  outline: none;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.open .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--orange-primary);
}

.burger-menu.open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-menu.open .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--orange-primary);
}

.burger-menu.open {
  background: rgba(20, 20, 22, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-surface);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-menu-links li {
  margin-bottom: 1.5rem;
}

.mobile-menu-link {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-menu-link:hover {
  color: var(--orange-primary);
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
}

.mobile-menu-buttons .nav-cta,
.mobile-menu-buttons .nav-cta-secondary,
.mobile-menu-buttons a,
.mobile-menu-buttons button {
  width: 100%;
  text-align: center;
}

/* =================================================================
   FOOTER (COMMUN À TOUTES LES PAGES)
   ================================================================= */

.footer {
  padding: 4rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--dark-surface);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--orange-primary);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
}

/* =================================================================
   STYLES COMMUNS DE SECTION
   ================================================================= */

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 1rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-primary);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  max-width: 820px;
  margin: 0.75rem auto 0;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
}

/* =================================================================
   ANIMATIONS COMMUNES
   ================================================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   PAGE D'ACCUEIL (INDEX.HTML)
   ================================================================= */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 8rem 4rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 140, 66, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(255, 159, 28, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 1000px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--orange-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-glow) 50%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  padding: 0 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-deep) 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-glow) 0%, var(--orange-primary) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 60px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--dark-border);
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  background: rgba(255, 107, 53, 0.05);
}

.hero-scroll {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 5;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange-primary), transparent);
}

/* 3D Floating Elements */
.floating-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.floating-vinyl {
  width: 150px; height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--dark-surface) 15%, transparent 16%),
    repeating-radial-gradient(circle at center, var(--dark-elevated) 0px, var(--dark-elevated) 2px, var(--dark-surface) 2px, var(--dark-surface) 10px);
  border: 3px solid var(--dark-border);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(255, 107, 53, 0.1);
  animation: float 6s ease-in-out infinite, spin 20s linear infinite;
  opacity: 0.6;
}

.floating-vinyl.v1 { top: 15%; left: 5%; animation-delay: 0s; }
.floating-vinyl.v2 { top: 60%; right: 8%; width: 100px; height: 100px; animation-delay: -2s; }
.floating-vinyl.v3 { bottom: 20%; left: 10%; width: 80px; height: 80px; animation-delay: -4s; }

.floating-note {
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
  opacity: 0.4;
  color: var(--orange-light);
}

.floating-note.n1 { top: 25%; right: 15%; animation-delay: -1s; }
.floating-note.n2 { top: 45%; left: 8%; animation-delay: -2s; }
.floating-note.n3 { bottom: 30%; right: 20%; animation-delay: -3s; }

/* About Section */
.about {
  padding: 8rem 4rem;
  position: relative;
}

/* Mission Process (Timeline) */
.mission-intro {
  max-width: 900px;
  margin: -2.5rem auto 0;
  text-align: center;
  padding: 0 1rem;
}

.mission-lead {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

.mission-process {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  align-items: flex-start;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.35), rgba(255, 107, 53, 0.05));
  pointer-events: none;
}

.process-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.16);
  border: 1px solid rgba(255, 107, 53, 0.35);
  box-shadow:
    0 0 0 7px rgba(255, 107, 53, 0.06),
    0 10px 25px rgba(0,0,0,0.35);
}

.step-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--orange-light);
}

.step-card {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 280px;
  height: 210px;
  display: flex;
  flex-direction: column;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 1.5rem 1.25rem 1.25rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-glow), var(--orange-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 107, 53, 0.10);
}

.step-card:hover::before { opacity: 1; }

.step-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.step-example {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(255, 107, 53, 0.10);
  border: 1px solid rgba(255, 107, 53, 0.18);
}

.step-icon{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,53,.10);
  border: 1px solid rgba(255,107,53,.18);
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* Founders Section */
.founders {
  padding: 8rem 4rem;
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.founders::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 40%);
  animation: rotate 60s linear infinite;
  pointer-events: none;
}

.founders-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.founders-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.founder-card {
  background: var(--dark-elevated);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--dark-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.founder-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 107, 53, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.founder-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 53, 0.2);
}

.founder-card:hover::after { opacity: 1; }

.founder-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid var(--dark-border);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card:hover .founder-avatar {
  border-color: var(--orange-primary);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
  transform: scale(1.1);
}

.founder-name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.founder-card-small {
  padding: 2rem;
}

.founder-avatar-small {
  width: 130px;
  height: 130px;
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.founder-card-small .founder-name {
  font-size: 1.1rem;
}

.founder-card-small .founder-role {
  font-size: 0.7rem;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-primary);
  position: relative;
  z-index: 1;
}

/* Artists Section */
.artists {
  padding: 8rem 4rem 10rem;
  position: relative;
  overflow: hidden;
}

/* Splide Carousel */
.splide {
  width: 100%;
  margin-top: 4rem;
  padding-top: 2rem;
}

.splide__slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  margin: 0 1%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  border: 2px solid transparent;
}

.splide__slide::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4rem;
  font-weight: 300;
  color: var(--orange-primary);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.splide__slide:hover {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 1px var(--orange-primary);
}

.splide__slide:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3) rotate(90deg);
}

/* Flèches de navigation */
.splide__arrow {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--orange-primary);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
}

.splide:hover .splide__arrow {
  opacity: 1;
}

.splide__arrow:hover {
  background: var(--orange-primary);
  transform: scale(1.1);
}

.splide__arrow svg {
  fill: var(--orange-primary);
  width: 1.2rem;
  height: 1.2rem;
}

.splide__arrow:hover svg {
  fill: white;
}

.splide-info {
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: 90%;
  padding: 10px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  z-index: 10;
}

.splide-info h4 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
}

.splide-info span {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange-primary);
  font-family: var(--font-title);
  text-transform: uppercase;
}

.splide__pagination {
  position: relative;
  bottom: -15px;
}

.splide__pagination__page.is-active {
  background-color: var(--orange-primary);
  transform: scale(1.2);
}

/* Social Links in Carousel */
.artist-social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.artist-social-links a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}

.artist-social-links a:hover {
  color: var(--orange-primary);
}

/* Artist Modal */
.artist-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 10000;
  padding: 50px 20px 20px;
}

.artist-modal.active {
  opacity: 1;
  visibility: visible;
}

.artist-modal-content {
  background: var(--dark-surface);
  max-width: 500px;
  width: 90%;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  position: relative;
  padding-bottom: 60px;
  border: 1px solid var(--dark-border);
}

.artist-modal-content img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 16px 16px 0 0;
}

.artist-modal-content h4 {
  margin: 20px 0 10px;
  font-size: 1.5rem;
  color: var(--orange-primary);
  font-family: var(--font-title);
}

.artist-modal-content p {
  margin: 0 30px 20px;
  font-size: 1rem;
  text-align: justify;
  color: var(--text-secondary);
  line-height: 1.7;
}

.close-artist-modal {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: var(--dark-elevated);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.close-artist-modal:hover {
  background-color: var(--orange-primary);
  color: white;
  border-color: var(--orange-primary);
  transform: translateX(-50%) scale(1.1);
}

/* Join Section */
.join {
  padding: 8rem 10rem;
  background: var(--dark-bg);
  position: relative;
}

.join-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.join-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 240px at 20% 0%,
    rgba(255, 107, 53, 0.12),
    transparent 55%
  );
  opacity: 0.55;
  pointer-events: none;
}

.join-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 40px rgba(255,107,53,0.10);
}

.join-card-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.join-card::after{
  content:"";
  display:block;
  margin-top: auto;
  margin-bottom: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,107,53,0.0), rgba(255,107,53,0.18), rgba(255,107,53,0.0));
  opacity: 0.7;
}

.join-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,53,.10);
  border: 1px solid rgba(255,107,53,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  flex: 0 0 auto;
  font-size: 1.15rem;
}

.join-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin: 0;
}

.join-pitch {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

.join-block {
  margin-top: 1.25rem;
  position: relative;
}

.join-label {
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-bottom: 0.65rem;
}

.join-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.92rem;
}

.join-list li {
  margin: 0.35rem 0;
}

.join-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.join-steps li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.join-step-index {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--orange-light);
  background: rgba(255,107,53,0.10);
  border: 1px solid rgba(255,107,53,0.18);
  flex: 0 0 auto;
}

.join-step-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Accent variations */
.join-artist .join-icon { background: rgba(255,107,53,.12); }
.join-volunteer .join-icon { background: rgba(255,107,53,.10); }
.join-partner .join-icon { background: rgba(255,107,53,.08); }

.join-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--orange-primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.join-card-link:hover {
  gap: 0.75rem;
  color: var(--orange-light);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  margin: 0;
}

.join-support .price-tag {
  flex-shrink: 0;
}

.price-tag .amount {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange-primary);
}

.price-tag .period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Support bar */
.join-support {
  margin-top: 2.2rem;
  background: linear-gradient(
    90deg,
    rgba(255,107,53,0.10),
    rgba(0,0,0,0.0)
  );
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.join-support-text {
  flex: 1;
  min-width: 250px;
}

.join-support-text h3 {
  margin: 0 0 0.4rem 0;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
}

.join-support-text p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 500px;
}

.join-support-cta {
  white-space: nowrap;
}

.join-support-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.join-support-actions button {
  white-space: nowrap;
}

/* FAQ Section - Page d'accueil */
.faq {
  padding: 8rem 4rem;
}

.faq-list {
  max-width: 700px;
  margin: 4rem auto 0;
}

.faq-item {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.faq-item.open {
  border-color: var(--orange-primary);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.1rem;
  user-select: none;
  gap: 2rem;
}

.faq-question span {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  font-size: 1.2rem;
  color: var(--orange-primary);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-toggle {
  background: var(--orange-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 8rem 4rem;
  background: var(--dark-surface);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-elevated);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--orange-primary);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-email:hover {
  border-color: var(--orange-primary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--dark-elevated);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--orange-primary);
}

.social-link:hover {
  border-color: var(--orange-primary);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  color: var(--orange-light);
}

.contact-form {
  background: var(--dark-elevated);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--dark-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Modal HelloAsso/PDF */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 2.5rem;
  width: 90%;
  max-width: 950px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 53, 0.1);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.modal-content h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--orange-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.modal-content b {
  color: var(--orange-primary);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--orange-primary);
  color: var(--orange-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: white;
  transform: rotate(90deg) scale(1.15);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.modal-content iframe {
  border-radius: 12px;
  margin-top: 1rem;
}

.modal-content .img-content img {
  border: 1px solid var(--dark-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content .pdf-content a {
  color: var(--orange-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.modal-content .pdf-content a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

.modal-content input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--orange-primary);
}

.modal-content form {
  margin-top: 2rem;
}

/* =================================================================
   PAGE ARTISTES (PAGE ARTISTES.HTML)
   ================================================================= */

/* Header de la page artistes */
.artists-header {
  padding: 8rem 4rem 2rem;
  position: relative;
}

.page-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-title span {
  color: var(--orange-primary);
}

/* Controls */
.controls-container {
  padding: 0 4rem 2rem;
  position: sticky;
  top: 80px;
  z-index: 90;
  background: linear-gradient(to bottom, var(--dark-bg) 80%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
}

.search-box {
  position: relative;
  min-width: 300px;
  flex-shrink: 1;
}

.search-input {
  width: 100%;
  background: var(--dark-elevated);
  border: 1px solid var(--dark-border);
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border-radius: 50px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.search-input:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.filters-list {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-primary) transparent;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
}

.filters-list::-webkit-scrollbar {
  height: 4px;
}

.filters-list::-webkit-scrollbar-track {
  background: transparent;
}

.filters-list::-webkit-scrollbar-thumb {
  background: var(--orange-primary);
  border-radius: 10px;
}

.filter-pill {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--text-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: white;
}

/* Grille Artistes */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 4rem 6rem;
  animation: fadeIn 0.8s ease;
}

.artist-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--dark-elevated);
  border: 1px solid transparent;
}

.artist-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.artist-card:hover .card-image {
  transform: scale(1.05);
  filter: brightness(0.6) blur(2px);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* Bouton "+" animé */
.card-hover-cta {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.95);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid white;
  z-index: 10;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.artist-card:hover .card-hover-cta {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-hover-cta i {
  transition: transform 0.5s ease;
}

.artist-card:hover .card-hover-cta i {
  transform: rotate(90deg);
}

.card-genre {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--orange-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

/* Modal Artiste - Page artistes */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: modalIn 0.3s forwards ease;
  padding: 2rem;
}

.modal-container {
  width: 100%;
  max-width: 1000px;
  height: 80vh;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  position: relative;
  box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}

.modal-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  flex: 1;
  padding: 3rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-genre-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange-primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.modal-stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 1.5rem;
}

.stat-item h5 {
  font-size: 1.2rem;
  color: white;
  font-family: var(--font-title);
}

.stat-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.modal-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.social-section-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  margin-top: auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--dark-elevated);
  border: 1px solid var(--dark-border);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--text-primary);
  color: var(--dark-bg);
  border-color: var(--text-primary);
  transform: translateY(-3px);
}

.social-btn i {
  font-size: 1.2rem;
}

/* =================================================================
   PAGE FAQ (FAQ.HTML)
   ================================================================= */

/* FAQ Hero Section */
.faq-hero {
  padding: 10rem 4rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(231, 97, 13, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* FAQ Section - Page FAQ */
.faq-section {
  padding: 4rem 4rem 8rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Detailed Sections */
.detail-sections {
  padding: 4rem 4rem 6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-sections-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(231, 97, 13, 0.05) 0%, rgba(231, 97, 13, 0.02) 100%);
  border: 1px solid rgba(231, 97, 13, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.detail-sections-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(231, 97, 13, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.detail-sections-header .section-tag,
.detail-sections-header .section-title,
.detail-sections-header .section-subtitle {
  position: relative;
  z-index: 1;
}

.detail-section {
  margin-bottom: 1.5rem;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  scroll-margin-top: 100px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.detail-section:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.detail-section.open {
  border-color: var(--orange-primary);
}

.detail-header {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.3s ease;
}

.detail-header:hover {
  background: rgba(255, 107, 53, 0.05);
}

.detail-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  font-size: 2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-section.open .detail-icon {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--orange-primary);
  transform: scale(1.05);
}

.detail-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin: 0;
}

.detail-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.detail-section.open .detail-toggle {
  transform: rotate(45deg);
  background: var(--orange-primary);
  color: white;
}

.detail-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-section.open .detail-content {
  max-height: 2000px;
}

.detail-inner {
  padding: 0 2rem 2rem 2rem;
}

.detail-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.detail-subsection {
  margin-bottom: 2rem;
}

.detail-subsection h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--orange-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-subsection h3::before {
  content: '▸';
  font-size: 1rem;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.detail-list li::before {
  content: '•';
  color: var(--orange-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.detail-steps {
  counter-reset: step-counter;
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-steps li {
  counter-increment: step-counter;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}

.detail-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--orange-primary);
  font-weight: bold;
}

.detail-list strong,
.detail-steps strong {
  color: var(--text-primary);
}

.detail-contact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 12px;
}

.detail-contact strong {
  color: var(--orange-primary);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Tablette et petits écrans */
@media (max-width: 1024px) {
  .nav { padding: 1.2rem 2.5rem; }
  .nav-links { display: none; }

  .hero, .about, .founders, .artists, .faq, .contact { padding: 5rem 2rem; }
  .join { padding: 5rem 4rem; }

  .contact-grid { grid-template-columns: 1fr; }

  .artists-header { padding: 7rem 2.5rem 2rem; }
  .controls-container {
    padding: 0 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 1.5rem 2.5rem 5rem;
    gap: 1.5rem;
  }

  .faq-hero, .faq-section, .detail-sections {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .detail-section { padding: 2rem; }
}

@media (max-width: 900px) {
  .nav { padding: 1rem 2rem; }

  .burger-menu {
    display: flex;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .artists-header { padding: 6rem 2rem 1.5rem; }
  .controls-container {
    padding: 0 2rem 1.5rem;
    position: relative;
    top: 0;
    gap: 1.2rem;
  }
  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    padding: 1rem 2rem 4rem;
    gap: 1.5rem;
  }

  .modal-container {
    flex-direction: column;
    height: 90vh;
    max-height: 90vh;
    width: 95%;
  }
  .modal-visual {
    flex: 0 0 250px;
    min-height: 250px;
  }
  .modal-content {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
  }
  .modal-title { font-size: 2.2rem; }
  .modal-stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Menu mobile */
  .burger-menu {
    display: flex !important;
    position: fixed;
    top: 0.5rem;
    right: 1.5rem;
    z-index: 1003;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 4rem;
  }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Section Join plus aérée en mobile */
  .join {
    padding: 4rem 1.5rem;
  }

  .join-grid {
    gap: 1rem;
  }

  /* Footer responsive */
  .footer {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo-icon {
    height: 40px;
  }

  .footer-logo-text {
    height: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  /* Éléments flottants visibles en mobile */
  .floating-vinyl.v2 { width: 80px; height: 80px; }
  .floating-vinyl.v3 { width: 70px; height: 70px; }

  .founders-main-grid, .founders-other-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .join-grid {
    grid-template-columns: 1fr;
  }

  .join-card {
    padding: 1.5rem 1.25rem;
    height: auto;
    min-height: 200px;
  }

  .join-support {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .join-support-text {
    width: 100%;
  }

  .join-support .price-tag {
    align-self: flex-start;
  }

  .join-support-actions {
    width: 100%;
    flex-direction: column;
  }

  .join-support-actions button {
    width: 100%;
  }

  /* Responsive pour process-steps */
  .process-steps {
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.35), rgba(255, 107, 53, 0.05));
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-card {
    margin-top: 0;
    max-width: none;
    height: auto;
    min-height: 200px;
  }

  .contact-form { padding: 1.5rem; }
  .faq { padding: 4rem 1.5rem; }

  .faq-hero {
    padding: 8rem 1.5rem 4rem;
  }

  .faq-section {
    padding: 3rem 1.5rem 4rem;
  }

  .detail-sections {
    padding: 2rem 1.5rem 4rem;
  }

  .detail-sections-header {
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
  }

  .detail-header {
    padding: 1.5rem;
    flex-wrap: wrap;
  }

  .detail-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .detail-title {
    font-size: 1.2rem;
  }

  .detail-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .detail-steps li {
    padding-left: 2.5rem;
  }

  .detail-steps li::before {
    width: 28px;
    height: 28px;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.25rem;
  }

  .footer {
    padding: 3rem 2rem;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* Styles pour le menu mobile ouvert (rendre la nav bar transparente) */
.nav.menu-open {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
}


@media (max-width: 600px) {
  .nav {
    padding: 0.8rem 1rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  .nav-logo {
    height: 35px;
  }
  .btn-back {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .artists-header {
    padding: 5rem 1rem 1rem;
  }
  .page-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 0.8rem;
  }

  .controls-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1rem 1rem;
    background: var(--dark-bg);
    position: relative;
    top: 0;
  }

  .filters-list {
    padding-bottom: 10px;
    padding-right: 1rem;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .search-box {
    min-width: 100%;
    width: 100%;
    order: -1;
  }

  .search-input {
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    font-size: 0.95rem;
  }

  .artists-grid {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 4rem;
    gap: 1.2rem;
  }

  .artist-card {
    aspect-ratio: 3/4;
    max-height: 500px;
  }

  /* Modal Mobile Optimisée */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
    background: rgba(10, 10, 11, 0.95);
  }
  .modal-container {
    height: 93vh;
    max-height: 93vh;
    width: 100%;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .modal-visual {
    flex: 0 0 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .modal-img {
    object-position: center top;
  }

  .modal-content {
    padding: 1.2rem;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }

  .modal-genre-tag {
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }

  .modal-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1.1;
  }

  .modal-stats-row {
    gap: 0.8rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .modal-stats-row::-webkit-scrollbar {
    display: none;
  }

  .stat-item {
    flex: 0 0 auto;
    min-width: 75px;
    text-align: center;
  }
  .stat-item h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .stat-item p {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }

  .modal-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }

  .social-section-title {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
    margin-top: auto;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .social-btn {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }
  .social-btn i {
    font-size: 1rem;
  }

  .footer {
    padding: 2rem 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Très petits écrans */
@media (max-width: 400px) {
  .nav {
    padding: 0.7rem 0.8rem;
    gap: 0.4rem;
  }
  .nav-logo { height: 30px; }
  .btn-back {
    padding: 0.35rem 0.7rem;
    font-size: 0.65rem;
  }

  .artists-header {
    padding: 4.5rem 0.8rem 0.8rem;
  }
  .page-title {
    font-size: 1.6rem;
  }

  .controls-container {
    padding: 0 0.8rem 0.8rem;
  }

  .artists-grid {
    padding: 0.8rem 0.8rem 3rem;
    gap: 1rem;
  }

  .modal-container {
    height: 95vh;
    max-height: 95vh;
  }

  .modal-visual {
    flex: 0 0 150px;
    min-height: 150px;
    max-height: 150px;
  }

  .modal-content {
    padding: 1rem;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .stat-item {
    min-width: 70px;
  }
  .stat-item h5 {
    font-size: 0.9rem;
  }
}
