:root {
  --bg: #050505;
  --bg-alt: #111;
  --card-bg: #151515;
  --accent: #00ff88;
  --accent-soft: rgba(0, 255, 136, 0.1);
  --text: #f9f9f9;
  --muted: #999;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  --max-width: 1100px;
  --transition: 0.18s ease-out;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #181818, #020202 60%);
  color: var(--text);
  min-height: 100vh;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 16px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav a:hover {
  color: var(--text);
}

.nav a.active {
  color: var(--accent);
  border-color: var(--accent);
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--accent-soft);
  color: var(--text);
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
}

/* NAV MOBILE */

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #000;
  padding: 10px 20px;
  border-bottom: 1px solid #151515;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.nav-mobile a.active {
  color: var(--accent);
}

/* LAYOUT */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

/* HERO SPLIT */

.hero {
  margin-top: 18px;
  margin-bottom: 32px;
}

.hero-split {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #202020, #050505 60%);
  overflow: hidden;
  padding: 26px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* Orbes de fond */

.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.4;
  mix-blend-mode: screen;
  animation: float-orb 16s infinite alternate ease-in-out;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(0, 255, 136, 0.3);
  top: -40px;
  left: -60px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 0, 90, 0.28);
  bottom: -60px;
  right: -40px;
  animation-delay: 2s;
}

.orb-3 {
  width: 160px;
  height: 160px;
  background: rgba(0, 180, 255, 0.26);
  top: 40%;
  right: 35%;
  animation-delay: 4s;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  z-index: 1;
}

.hero-left {
  max-width: 520px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-left h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* HERO RIGHT : galerie d'images */

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-gallery {
  position: relative;
  width: 320px; /* plus grand */
  max-width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.hero-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-img.main {
  height: 320px;
}

.hero-img.secondary {
  position: absolute;
  width: 52%;
  height: 48%;
  transform: translateZ(-20px);
}

.secondary-1 {
  top: -10px;
  right: -25px;
}

.secondary-2 {
  bottom: -20px;
  left: -25px;
}

/* SECTIONS GÉNÉRALES */

.section {
  padding: 30px 0;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.section-alt {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

/* STRIP STATS */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at left, rgba(0, 255, 136, 0.12), #080808 60%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 2px;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), opacity 0.55s ease-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 255, 136, 0.3);
}

/* Dernière sortie */

.card-last-release {
  padding: 0;
}

.card-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

/* image + parallax propre, jamais de bords visibles */
.card-img.parallax-img {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.card-img.parallax-img img {
  position: absolute;
  left: 50%;
  width: 120%;
  height: 140%;
  top: -20%;
  transform: translateX(-50%);
  object-fit: cover;
  will-change: transform;
}

/* encore plus safe pour la cover "Embryons maudit" */
.card-last-release .card-img.parallax-img img {
  width: 130%;
  height: 150%;
  top: -25%;
}

/* Texte sur cover */

.full-parallax {
  position: relative;
}

.full-parallax-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4),
    transparent
  );
}

.full-parallax-content h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full-parallax-content p {
  margin: 4px 0 8px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ARTISTES */

.artists-grid .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artists-grid img {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--accent-soft);
}

.artists-grid h3 {
  margin-top: 4px;
}

.artists-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* PLACEHOLDER */

.placeholder-img {
  background: linear-gradient(135deg, var(--accent-soft), #222);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 12px;
}

/* BOUTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.btn.primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 0 rgba(0, 255, 136, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.5);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
}

.btn.secondary:hover {
  background: var(--accent-soft);
}

.btn.small {
  font-size: 0.75rem;
  padding: 6px 12px;
}

/* SOCIALS */

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.social-link {
  text-decoration: none;
  color: var(--accent);
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.7);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ANIMATIONS SCROLL / FADE-IN */

.fade-in,
.fade-in-delayed,
.slide-up,
[data-animate],
.card,
.hero-gallery {
  opacity: 0;
  transform: translateY(18px);
}

.visible,
.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

/* TILT CARD */

.tilt-card {
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  will-change: transform;
}

/* ORBS ANIM */

@keyframes float-orb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(30px, -30px, 0) scale(1.06);
  }
}

/* RESPONSIVE */

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-gallery {
    margin-top: 12px;
  }

  .stats-strip {
    border-radius: 18px;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

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

  main {
    padding: 16px;
  }
}
.event-form {
  margin-top: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 18px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #050505;
  border-radius: 10px;
  border: 1px solid #333;
  padding: 8px 10px;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.form-status {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ==========================
   PRODUITS (boutique)
   ========================== */

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-img-wrap {
  width: 100%;
  height: 230px;          /* taille fixe propre */
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at top, #202020, #050505);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* recadre proprement */
  object-position: center;
  display: block;
}

.product-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.price {
  font-weight: 600;
  font-size: 1rem;
}

/* ==========================
   PANIER (nouveau design)
   ========================== */

.cart-empty-box {
  background: #101010;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px dashed #333;
  box-shadow: var(--shadow);
}

.cart-box {
  margin-top: 12px;
  background: #101010;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid #222;
  box-shadow: var(--shadow);
}

.cart-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 6px 0 10px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cart-table th,
.cart-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #222;
  text-align: left;
}

.cart-table th {
  background: #111;
  font-weight: 600;
}

.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.cart-total {
  font-weight: 600;
  font-size: 1rem;
}
