/* ============================================
   RÉPA COMBI MOTORSPORTS - CSS RACING STYLE
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --gold: #e2aa3e;
  --red: #ff3131;
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #0d0d0d;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- RACING GRID BACKGROUND ---- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(226,170,62,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,170,62,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ---- NAVBAR ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  border-bottom: 2px solid var(--gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 0.3rem;
  list-style: none;
}

.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(226,170,62,0.1);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 25px; height: 2px;
  background: var(--gold);
  display: block;
  transition: all 0.3s;
}

/* ---- MAIN CONTENT ---- */
main { padding-top: 70px; position: relative; z-index: 1; }

/* ---- HERO ---- */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(226,170,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Speed lines */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 200px,
    rgba(226,170,62,0.02) 200px,
    rgba(226,170,62,0.02) 201px
  );
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,49,49,0.2);
  border: 1px solid var(--red);
  color: var(--red);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(226,170,62,0.3);
}

.hero h1 .red { color: var(--red); }

.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  color: var(--light-gray);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-flags {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.hero-champs {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: #f0c050;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(226,170,62,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: #ff5555;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,49,49,0.4);
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(226,170,62,0.3);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
}

.stat-item p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- SECTIONS ---- */
section {
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.2);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(226,170,62,0.15);
}

.service-icon {
  width: 60px; height: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.service-card p { color: var(--gray); line-height: 1.6; }

/* ---- HIGHLIGHTS (ATOUTS) ---- */
.highlights {
  background: var(--darker);
  border-top: 1px solid rgba(226,170,62,0.15);
  border-bottom: 1px solid rgba(226,170,62,0.15);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.15);
  border-radius: 4px;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: var(--gold);
  background: rgba(226,170,62,0.05);
}

.highlight-card svg { margin-bottom: 1rem; }

.highlight-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.highlight-card p { color: var(--gray); font-size: 0.9rem; }

/* ---- UNIQTHREAD PARTNER ---- */
.partner-section {
  background: var(--dark);
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(226,170,62,0.2);
  border-bottom: 1px solid rgba(226,170,62,0.2);
}

.partner-section .partner-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 1rem;
}

.partner-logo-container {
  display: inline-block;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  border: 2px solid var(--gold);
}

.partner-logo-container img {
  max-width: 160px;
  max-height: 70px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ---- PARTENAIRES GRID ---- */
.partenaires-section { background: var(--black); }

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partenaire-card {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.2);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.partenaire-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.partenaire-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(226,170,62,0.15);
}

.partenaire-card:hover::after { transform: scaleX(1); }

.partenaire-logo {
  background: white;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.2rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partenaire-logo img {
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
}

.partenaire-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.partenaire-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.partenaire-card a.btn-outline {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  letter-spacing: 1px;
}

/* ---- PARTNERSHIP CTA ---- */
.partnership-cta {
  background: linear-gradient(135deg, rgba(226,170,62,0.1), rgba(255,49,49,0.05));
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}

.partnership-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

.partnership-cta p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ---- AGENDA ---- */
.agenda-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  cursor: pointer;
  background: var(--dark);
  color: var(--gray);
  border: 1px solid rgba(226,170,62,0.3);
  transition: all 0.3s;
  text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.15);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.event-card:hover {
  border-color: var(--gold);
  background: rgba(226,170,62,0.05);
}

.event-date {
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem;
  border-radius: 3px;
  text-align: center;
  min-width: 55px;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.1;
}

.event-date .day { font-size: 1.5rem; }
.event-date .month { font-size: 0.7rem; letter-spacing: 1px; }

.event-info h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.event-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

.event-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: rgba(255,49,49,0.2);
  color: var(--red);
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 0.3rem;
}

/* ---- DTF SHOP ---- */
.dtf-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.price-card {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.2);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s;
}

.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.price-card .format {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
}

.price-card .price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  display: block;
}

.dtf-series-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.series-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  cursor: pointer;
  border: 1px solid rgba(226,170,62,0.3);
  background: var(--dark);
  color: var(--gray);
  transition: all 0.3s;
}

.series-tab.active-s1, .series-tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.series-tab.active-s2 { background: #00bcd4; color: var(--black); border-color: #00bcd4; }
.series-tab.active-s3 { background: #ff6b35; color: var(--black); border-color: #ff6b35; }

.dtf-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.design-card {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.design-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.design-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.design-info {
  padding: 0.75rem;
  text-align: center;
}

.design-info h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.design-info span {
  font-size: 0.75rem;
  color: var(--gray);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* Serie couleurs */
.serie1 .design-info { border-top: 2px solid var(--red); }
.serie2 .design-info { border-top: 2px solid #00bcd4; }
.serie3 .design-info { border-top: 2px solid #ff6b35; }

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.2);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg { width: 45px; height: 45px; }

.team-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.team-card .role {
  color: var(--red);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.team-card p { color: var(--gray); margin-bottom: 1rem; font-size: 0.95rem; }

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info { }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.9rem;
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.15);
  border-radius: 4px;
}

.contact-item svg { flex-shrink: 0; margin-top: 3px; }

.contact-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-size: 1rem;
  letter-spacing: 1px;
}

.contact-item p, .contact-item a {
  color: var(--gray);
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.15);
  border-radius: 4px;
  padding: 2rem;
}

.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(226,170,62,0.3);
  border-radius: 3px;
  color: var(--white);
  padding: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

.form-group textarea { height: 120px; resize: vertical; }

/* ---- MENTIONS LÉGALES ---- */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background: var(--dark);
  border: 1px solid rgba(226,170,62,0.15);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(226,170,62,0.2);
}

.legal-section p, .legal-section li {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-section strong { color: var(--light-gray); }

/* ---- FOOTER ---- */
footer {
  background: var(--darker);
  border-top: 2px solid var(--gold);
  padding: 3rem 2rem 1rem;
  position: relative;
  z-index: 1;
}

/* Checkered flag footer */
footer::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 8px,
    transparent 8px, transparent 16px
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 35px; height: 35px;
  border-radius: 50%;
  background: rgba(226,170,62,0.1);
  border: 1px solid rgba(226,170,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.4rem; }

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-flags { margin-top: 0.75rem; font-size: 1.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(226,170,62,0.15);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}

.whatsapp-float svg { width: 32px; height: 32px; }

/* ---- MODAL ---- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal.open { display: flex; }

.modal-content {
  position: relative;
  max-width: 600px;
  max-height: 90vh;
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid var(--gold);
}

.modal-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1rem; border-bottom: 2px solid var(--gold); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-logo { width: min(160px, 55vw); }
  .nav-logo-img { height: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .partner-logo-container img { max-width: 120px; max-height: 50px; }
  .lang-selector { gap: 2px; }
  .lang-btn { font-size: 0.9rem; padding: 1px 2px; }
  section { padding: 2rem 1rem; }
  .contact-form { padding: 1.2rem; }
}

/* ---- LOGO IMAGE NAV ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(226,170,62,0.4));
}

/* ---- HERO LOGO ---- */
.hero-logo {
  width: min(220px, 50vw);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(226,170,62,0.5));
  animation: logo-pulse 3s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(226,170,62,0.4)); }
  50% { filter: drop-shadow(0 0 40px rgba(226,170,62,0.8)) drop-shadow(0 0 60px rgba(255,49,49,0.3)); }
}

/* ---- LANG SELECTOR ---- */
.lang-selector { display:flex; gap:4px; align-items:center; margin-left:10px; }
.lang-btn { background:none; border:1px solid transparent; border-radius:4px; font-size:1.1rem; cursor:pointer; padding:2px 4px; transition:border-color .2s; line-height:1; }
.lang-btn:hover { border-color:var(--gold); }
/* Cacher la barre Google Translate par défaut */
.skiptranslate, .goog-te-banner-frame { display:none !important; }
body { top:0 !important; }

/* ---- TRÈS PETITS ÉCRANS ---- */
@media (max-width: 380px) {
  .nav-logo { font-size: 0; }
  .nav-logo-img { height: 38px; }
}


/* ============================================================================
   HEADER UNIFIÉ RÉPA COMBI (v2026-07-17)
   Appliqué sur toutes les pages via <header class="rc-header">
   ============================================================================ */
.rc-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 170, 62, .3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
.rc-header * { box-sizing: border-box; }
.rc-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.rc-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e2aa3e;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.rc-logo img {
  height: 72px; width: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .4));
}
.rc-logo span {
  white-space: nowrap;
  text-transform: uppercase;
}
.rc-nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.rc-nav-links li { list-style: none; }
.rc-nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all .2s ease;
  display: block;
}
.rc-nav-links a:hover {
  background: rgba(226, 170, 62, .15);
  color: #e2aa3e;
}
.rc-nav-links a.active {
  background: linear-gradient(135deg, #e2aa3e, #c99730);
  color: #0a0a0a;
  box-shadow: 0 2px 8px rgba(226, 170, 62, .3);
}
.rc-burger {
  display: none;
  background: none;
  border: 2px solid #e2aa3e;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.rc-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e2aa3e;
  border-radius: 2px;
  transition: all .3s ease;
}
.rc-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rc-burger.open span:nth-child(2) { opacity: 0; }
.rc-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile ≤ 900px */
@media (max-width: 900px) {
  .rc-nav { padding: 0.6rem 1rem; }
  .rc-logo span { font-size: 0.8rem; }
  .rc-logo img { height: 60px; width: 60px; }
  .rc-burger { display: flex; }
  .rc-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(226, 170, 62, .3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
  }
  .rc-nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .rc-nav-links a { padding: 0.85rem 1rem; font-size: 1rem; }
}
@media (max-width: 480px) {
  .rc-logo span { display: none; }
}

/* Ajustement body pour éviter overlap avec header sticky si live-badge présent */
body.rc-has-live .rc-header { top: var(--rc-live-h, 0); }
/* ============================================================================
   FIN HEADER UNIFIÉ
   ============================================================================ */

/* LOGO SIZE ENFORCED (v2 - 2026-07-17 · plus imposant) */
.rc-header .rc-logo {
  gap: 0.9rem;
}
.rc-header .rc-logo img {
  height: 120px !important;
  width: 120px !important;
  min-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5));
}
.rc-header .rc-nav {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}
.rc-header .rc-logo span {
  font-size: 1.15rem;
  letter-spacing: 1px;
}
@media (max-width: 1100px) {
  .rc-header .rc-logo img { height: 96px !important; width: 96px !important; min-width: 96px; }
  .rc-header .rc-logo span { font-size: 1rem; }
}
@media (max-width: 900px) {
  .rc-header .rc-logo img { height: 76px !important; width: 76px !important; min-width: 76px; }
  .rc-header .rc-logo span { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .rc-header .rc-logo img { height: 60px !important; width: 60px !important; min-width: 60px; }
}
