/* =============================================
   VELOX AUTO — Feuille de styles principale
   Auteur : ROVEN
   Description : Design system, composants et
   responsive pour le site concessionnaire premium.
============================================= */


/* =============================================
   1. DESIGN SYSTEM — VARIABLES CSS
   Toutes les couleurs, polices et transitions
   sont centralisées ici pour faciliter les
   modifications globales.
============================================= */
:root {
  --bg: #161616;           /* Fond principal anthracite */
  --surface: #1E1E1E;      /* Fond des cartes et sections secondaires */
  --text: #F2EDE6;         /* Texte principal (crème chaud) */
  --gold: #C47F3A;         /* Accent cuivre — couleur signature */
  --muted: #6B6B6B;        /* Texte secondaire / descriptions */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s ease;
  --max-width: 1280px;     /* Largeur maximale du contenu */
}


/* =============================================
   2. RESET & BASE
   Normalisation des styles navigateurs et
   règles de base appliquées à tous les éléments.
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Scroll fluide uniquement si l'utilisateur ne préfère pas les animations réduites */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden; /* Empêche le scroll horizontal */
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }


/* =============================================
   3. UTILITAIRES
   Classes réutilisables sur tout le site.
============================================= */

/* Conteneur centré avec largeur maximale */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Surtitre de section (ex: "Notre sélection") */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Filet horizontal cuivre décoratif */
.gold-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}


/* =============================================
   4. ANIMATION — SCROLL REVEAL
   Les éléments avec .reveal apparaissent au
   défilement via IntersectionObserver (main.js).
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* État visible déclenché par JS */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais d'apparition en cascade pour les grilles */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* =============================================
   5. CURSEUR PERSONNALISÉ (desktop uniquement)
   Remplace le curseur par un point cuivre sur
   les appareils avec souris précise.
============================================= */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }
}

#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;  /* N'intercepte pas les clics */
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease;
  display: none; /* Affiché uniquement par JS sur desktop */
}


/* =============================================
   6. NAVBAR
   Barre de navigation fixe en haut.
   Devient opaque et réduite au scroll (.scrolled).
============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), border-bottom var(--transition);
  border-bottom: 1px solid transparent;
}

/* État après scroll : fond flouté et bordure cuivre */
#navbar.scrolled {
  background: rgba(17, 18, 20, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom-color: rgba(201, 168, 76, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo VELOX en Playfair Display */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* Liens de navigation desktop */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

/* Bouton hamburger — affiché uniquement sur mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animation hamburger → croix quand le menu est ouvert */
#navbar.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#navbar.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
#navbar.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu mobile déroulant */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: rgba(17, 18, 20, 0.98);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

#navbar.menu-open .nav-mobile { display: flex; }

.nav-mobile-link {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.8;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), opacity var(--transition);
}

.nav-mobile-link:hover { color: var(--gold); opacity: 1; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}


/* =============================================
   7. HERO
   Section plein écran avec photo en fond,
   double overlay pour la lisibilité du texte.
============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* Fallback pour les anciens navigateurs */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px; /* Compense la navbar fixe */
}

/* Photo de fond via pseudo-élément pour séparer l'image de l'overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

/* Overlay sombre pour garantir la lisibilité du texte */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(22,22,22,0.55) 0%, rgba(22,22,22,0.75) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(22,22,22,0.3) 0%, transparent 70%);
  z-index: 1;
}

/* Contenu hero au-dessus des pseudo-éléments */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-rule {
  width: 120px;
  opacity: 0.6;
}

/* Titre principal en grand format responsive */
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-line {
  display: block;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.25s;
}

/* Deuxième ligne en contour (effet outline) */
.hero-line-2 {
  animation-delay: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,240,232,0.5);
}

.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.05em;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.55s;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.7s;
}


/* =============================================
   8. BOUTONS
   Trois variantes : or (CTA principal),
   contour (secondaire), noir (sur fond cuivre).
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Bouton principal cuivre plein */
.btn-gold {
  background: var(--gold);
  color: #0A0A0B;
}

.btn-gold:hover {
  background: #d4b460;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

/* Bouton secondaire contour cuivre */
.btn-ghost {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

/* Bouton noir utilisé sur la CTA band cuivre */
.btn-black {
  background: #0A0A0B;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-black:hover {
  background: #1a1a1b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}


/* =============================================
   9. ANIMATION HERO — FADE UP
   Utilisée pour l'entrée des éléments du hero.
============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 240px; justify-content: center; }
}


/* =============================================
   10. BRAND BAR
   Bandeau défilant en boucle infinie avec les
   mots-clés de la marque.
============================================= */
.brandbar {
  background: var(--surface);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  padding: 1rem 0;
}

/* La piste est dupliquée dans le HTML pour un loop sans saut */
.brandbar-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.brandbar-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0 1.5rem;
}

.brandbar-diamond {
  font-style: normal;
  font-size: 0.5rem;
  opacity: 0.6;
}

/* Animation de défilement horizontal */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* -50% car le contenu est dupliqué */
}

/* Pause au survol */
.brandbar:hover .brandbar-track { animation-play-state: paused; }


/* =============================================
   11. SECTION — VÉHICULES
   Grille de 3 cartes voiture avec photo,
   description et prix alignés en bas.
============================================= */
#vehicules {
  padding: 8rem 0;
}

.vehicles-header {
  margin-bottom: 4rem;
}

/* Titre de section partagé par toutes les sections */
.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin: 0.4rem 0 0.8rem;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Grille responsive : 3 col → 2 → 1 */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Carte véhicule */
.car-card {
  background: var(--surface);
  border-top: 3px solid var(--gold); /* Accent cuivre en haut de chaque carte */
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Corps de la carte en flex-column pour pousser le footer en bas */
.car-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(196,127,58,0.15), 0 0 0 1px rgba(196,127,58,0.1);
}

/* Conteneur de la photo avec ratio fixe */
.car-visual {
  width: 100%;
  aspect-ratio: 16/7;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

/* Dégradé sombre en bas de la photo pour le fondu */
.car-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,22,22,0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Photo avec zoom subtil au survol */
.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.car-card:hover .car-img {
  transform: scale(1.04);
}

/* Catégorie du véhicule (ex: "Berline sportive") */
.car-category {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Nom du modèle */
.car-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

/* Description — flex: 1 pour pousser le footer en bas */
.car-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Pied de carte : prix à gauche, bouton à droite */
.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.2rem;
}

.car-price {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.car-price strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.1rem;
}

/* Bouton "Découvrir" en contour cuivre */
.car-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.3);
  transition: all var(--transition);
}

.car-cta:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}

@media (max-width: 1024px) {
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vehicles-grid { grid-template-columns: 1fr; }
  #vehicules { padding: 5rem 0; }
}


/* =============================================
   12. SECTION — POURQUOI VELOX
   Grille de 3 arguments avec numéros
   stylisés en grand.
============================================= */
#pourquoi {
  padding: 8rem 0;
  background: var(--surface);
}

.pourquoi-header {
  margin-bottom: 4rem;
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pourquoi-item {
  display: flex;
  flex-direction: column;
}

.pourquoi-rule {
  width: 40px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

/* Numéro décoratif (01, 02, 03) */
.pourquoi-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  opacity: 0.9;
}

.pourquoi-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.pourquoi-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .pourquoi-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  #pourquoi { padding: 5rem 0; }
}


/* =============================================
   13. SECTION — TÉMOIGNAGES
   Grille de 2 avis clients avec guillemet
   décoratif et auteur.
============================================= */
#temoignages {
  padding: 8rem 0;
  text-align: center;
}

.temoignages-header {
  margin-bottom: 4rem;
}

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

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.temoignage {
  position: relative;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.08);
  text-align: left;
}

/* Guillemet ouvrante géante en décoration */
.temoignage-quote-mark {
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: -1rem;
  font-weight: 900;
}

.temoignage-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.temoignage-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

.temoignage-name {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.temoignage-city {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 768px) {
  .temoignages-grid { grid-template-columns: 1fr; }
  #temoignages { padding: 5rem 0; }
}


/* =============================================
   14. CTA BAND
   Bandeau d'appel à l'action sur fond cuivre.
============================================= */
.cta-band {
  background: var(--gold);
  padding: 6rem 0;
  text-align: center;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-band-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10,10,11,0.6);
}

.cta-band-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #0A0A0B;
  letter-spacing: -0.02em;
  max-width: 700px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .cta-band { padding: 4rem 0; }
}


/* =============================================
   15. FOOTER
   Trois colonnes : marque, navigation, contact.
============================================= */
#footer {
  background: #080809;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col-title {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-info {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* Bande de copyright */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Lien ROVEN en cuivre */
.footer-roven {
  color: var(--gold);
  font-weight: 500;
  transition: opacity var(--transition);
}

.footer-roven:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-top: 3rem; }
}


/* =============================================
   16. RESPONSIVE — RÈGLES PARTAGÉES
============================================= */
@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }
  .section-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

/* Décalage de scroll pour compenser la navbar fixe */
[id] { scroll-margin-top: 80px; }


/* =============================================
   17. ACCESSIBILITÉ & FINITIONS
============================================= */

/* Couleur de sélection de texte */
::selection {
  background: rgba(201,168,76,0.3);
  color: var(--text);
}

/* Scrollbar webkit personnalisée */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.5); }

/* Désactive toutes les animations si l'utilisateur le préfère */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .brandbar-track { animation: none; }
  .reveal { opacity: 1; transform: none; } /* Affiche les éléments directement */
}
