/* =============================================
   DJ COQUANCELLARA — Site Vitrine
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --red: #E50914;
  --red-hover: #FF1A2D;
  --red-dark: #B0060F;
  --red-glow: rgba(229, 9, 20, 0.35);
  --red-subtle: rgba(229, 9, 20, 0.06);
  --bg: #F5F2EE;
  --bg-elevated: #EDE9E3;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAF8F6;
  --text: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #888888;
  --border: rgba(0, 0, 0, 0.07);
  --border-red: rgba(229, 9, 20, 0.15);

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-padding: clamp(80px, 10vw, 140px);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-label.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
}

.section-title.center {
  text-align: center;
}

.text-accent {
  color: var(--red);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--red-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(26, 27, 31, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s var(--ease);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo span {
  color: inherit;
}

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

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

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(120px);
  animation: gradientPulse 8s ease-in-out infinite alternate;
}

.hero-gradient-2 {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-dark) 0%, transparent 70%);
  opacity: 0.07;
  filter: blur(80px);
  animation: gradientDrift 12s ease-in-out infinite alternate-reverse;
}

/* Hero video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-wrap iframe,
.hero-video-wrap #yt-player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

/* Fixed sound toggle */
.sound-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: rgba(229, 9, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 24px rgba(229, 9, 20, 0.35);
  animation: soundPulse 2s ease-in-out infinite;
}

.sound-toggle.scrolled {
  padding: 12px 20px;
  font-size: 0.7rem;
  gap: 8px;
  background: rgba(17, 17, 21, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  animation: none;
}

.sound-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(229, 9, 20, 0.4);
}

.sound-toggle.scrolled:hover {
  background: rgba(17, 17, 21, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.sound-toggle.active {
  background: rgba(229, 9, 20, 0.85);
  border-color: rgba(229, 9, 20, 0.6);
  color: #FFFFFF;
  box-shadow: 0 4px 24px rgba(229, 9, 20, 0.3);
  animation: none;
}

@keyframes soundPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(229, 9, 20, 0.35); }
  50% { box-shadow: 0 4px 40px rgba(229, 9, 20, 0.6), 0 0 60px rgba(229, 9, 20, 0.15); }
}

.hero-label {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.9s var(--ease-out) 0.4s forwards;
}

.title-accent {
  color: #FFFFFF;
  text-shadow: 0 0 120px rgba(255, 255, 255, 0.15);
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: clamp(0.6rem, 1.2vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease) 0.85s forwards;
}

.location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  animation: dotPulse 2.5s ease-in-out infinite;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(229, 9, 20, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(229, 9, 20, 0.4);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease) 1.05s forwards;
}

.hero-cta:hover {
  background: rgba(229, 9, 20, 0.45);
  border-color: rgba(229, 9, 20, 0.6);
  box-shadow: 0 0 40px var(--red-glow);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 1.5s forwards;
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 44px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: scrollLine 2s var(--ease) infinite;
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.12em;
  padding: 0 14px;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.marquee-sep {
  color: var(--red) !important;
  opacity: 0.5;
  padding: 0 6px !important;
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image-container {
  position: relative;
}

.about-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-red);
  background: linear-gradient(135deg, var(--bg-card), var(--bg));
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-image-frame:hover .about-image {
  transform: scale(1.03);
}

.about-image-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50px;
  background: var(--red);
  filter: blur(50px);
  opacity: 0.25;
  pointer-events: none;
}

.about-content {
  padding: 10px 0;
}

.about-text {
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: justify;
}

.about-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.genre-tag {
  padding: 8px 20px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--red);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.genre-tag:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.25);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--bg-elevated);
}

.video-wrapper {
  margin-top: 10px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #15161A;
  cursor: pointer;
}

.video-container video {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 0.5s var(--ease);
  z-index: 1;
  pointer-events: none;
}

.video-overlay.hidden {
  opacity: 0;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
  z-index: 2;
  box-shadow: 0 0 0 0 var(--red-glow);
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 3px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px var(--red-glow), 0 0 100px rgba(229, 9, 20, 0.12);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.7);
}

/* ===== PRESTATIONS ===== */
.prestations {
  background: var(--bg-elevated);
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.prestation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(30px, 4vw, 45px) clamp(24px, 3vw, 35px);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.prestation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.prestation-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(229, 9, 20, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.prestation-card:hover {
  border-color: var(--border-red);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

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

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

.prestation-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 1.15rem;
  transition: all 0.3s var(--ease);
}

.prestation-card:hover .prestation-icon {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.3);
}

.prestation-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.prestation-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== PLATFORMS ===== */
.platforms {
  background: var(--bg);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 16px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
  text-align: center;
}

.platform-card:hover {
  border-color: var(--border-red);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.platform-card i {
  font-size: 2rem;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.platform-card:hover i {
  color: var(--red);
  transform: scale(1.1);
}

.platform-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.platform-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Latest mix embed */
.latest-mix {
  margin-top: 40px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.latest-mix-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.latest-mix-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}

.latest-mix-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}

.contact-inner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(30px, 5vw, 60px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-text {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 56px;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s var(--ease);
}

.contact-btn:hover {
  box-shadow: 0 8px 35px var(--red-glow), 0 0 80px rgba(229, 9, 20, 0.12);
  transform: translateY(-3px);
}

.contact-btn:hover::before {
  left: 100%;
}

/* Contact form */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='rgba(255,255,255,0.4)'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form select option {
  background: #1a1a1f;
  color: #FFFFFF;
}

.contact-form select:invalid,
.contact-form select option[disabled] {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .contact-btn {
  width: 100%;
  justify-content: center;
  cursor: pointer;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.footer-logo:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-subtle);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-copy a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer-copy a:hover {
  color: var(--red);
}

/* ===== LEGAL PAGE ===== */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-back {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.3s var(--ease);
}

.legal-back:hover {
  color: var(--red);
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-section a {
  color: var(--red);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

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

@keyframes gradientPulse {
  0% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(1.4);
  }
}

@keyframes gradientDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, 50px); }
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--red-glow); }
  50% { opacity: 0.5; transform: scale(1.4); box-shadow: 0 0 20px var(--red-glow); }
}

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

/* ===== SCROLL REVEAL ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.prestations-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.prestations-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.prestations-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.prestations-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ===== DARK / LIGHT SECTION OVERRIDES ===== */

/* Navbar — white text by default (over dark hero) */
.navbar { color: #FFFFFF; }
.nav-logo { color: #FFFFFF; }
.nav-link { color: rgba(255, 255, 255, 0.8); }
.nav-toggle span { background: #FFFFFF; }

/* Navbar — dark text when scrolled over light content */
.navbar.scrolled {
  background: rgba(245, 242, 238, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.navbar.scrolled .nav-logo { color: var(--text); }
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--red); }
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* Hero — stays dark for dramatic impact */
.hero {
  background: #111115;
  color: #FFFFFF;
}
.hero-label { color: rgba(255, 255, 255, 0.55); }
.hero-location { color: rgba(255, 255, 255, 0.5); }
/* Marquee — border adjusted for light */
.marquee {
  border-color: rgba(0, 0, 0, 0.06);
}

/* Cards — shadows on light background */
.prestation-card,
.platform-card {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}
.prestation-card:hover,
.platform-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* About image frame */
.about-image-frame {
  background: #E8E4DF;
}
.about-image-glow {
  opacity: 0.15;
}

/* Video — cinematic dark frame on light page */
.video-container {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

/* Contact section — dark for CTA impact */
.contact {
  background: #111115;
  color: #FFFFFF;
}
.contact-inner {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.07);
}
.contact-glow {
  background: radial-gradient(circle, rgba(229, 9, 20, 0.1) 0%, transparent 70%);
}
.contact-title,
.contact .section-label { color: inherit; }
.contact-title { color: #FFFFFF; }
.contact-text { color: rgba(255, 255, 255, 0.55); }
.contact .section-label { color: var(--red); }

/* Footer — dark to match contact */
.footer {
  background: #111115;
  border-top-color: rgba(255, 255, 255, 0.07);
}
.footer-logo { color: rgba(255, 255, 255, 0.35); }
.footer-logo:hover { color: #FFFFFF; }
.footer-social a {
  color: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.1);
}
.footer-copy { color: rgba(255, 255, 255, 0.25); }

/* Scrollbar — light track */
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #CCC; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

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

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-frame {
    max-width: 380px;
    margin: 0 auto;
  }

  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav mobile overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 21, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(3.2rem, 17vw, 5.5rem);
  }

  .hero-location {
    margin-bottom: 36px;
  }

  /* Sections */
  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .platform-card {
    padding: 24px 12px 20px;
  }

  .platform-card i {
    font-size: 1.6rem;
  }

  /* Video */
  .video-play-btn {
    width: 64px;
    height: 64px;
  }

  .video-play-btn svg {
    width: 18px;
    height: 18px;
  }

  .video-container {
    border-radius: 12px;
  }

  /* Contact */
  .contact-inner {
    border-radius: 16px;
    padding: 50px 24px;
  }

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

/* Small mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.8rem, 16vw, 4rem);
  }

  .hero-cta {
    padding: 14px 38px;
    font-size: 0.72rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-btn {
    padding: 16px 36px;
    font-size: 0.78rem;
  }

  .contact-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .about-genres {
    gap: 8px;
  }

  .genre-tag {
    padding: 6px 14px;
    font-size: 0.68rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-label, .title-line, .hero-location, .hero-cta, .scroll-indicator {
    opacity: 1;
    transform: none;
  }
}
