/* ============================================================
   MOTO-CITY — Feuille de style partagée
   Toutes les pages FR et EN utilisent ce fichier
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --gold-dim:    rgba(201,169,110,0.15);
  --gold-border: rgba(201,169,110,0.2);
  --black:       #0A0A08;
  --black-soft:  #111110;
  --dark:        #1A1A18;
  --gray:        #2C2C2A;
  --text:        #F5F0E8;
  --text-muted:  #9A9488;
  --text-faint:  rgba(154,148,136,0.5);
  --white:       #FAFAF7;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      4px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- GRAIN OVERLAY --------------------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ---- NAVIGATION ------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,8,0.98) 0%, rgba(10,10,8,0.0) 100%);
  transition: background var(--transition);
}

.site-nav.scrolled {
  background: rgba(10,10,8,0.97);
  border-bottom: 1px solid var(--gold-border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo span { color: var(--text); font-weight: 400; font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.3rem !important;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  margin-left: 0.5rem;
}
.nav-lang a {
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
  color: var(--text-muted) !important;
  padding: 0 4px;
}
.nav-lang a.current { color: var(--gold) !important; }
.nav-lang span { color: var(--gold-border); font-size: 0.6rem; }

/* ---- HERO ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,169,110,0.07) 0%, transparent 70%),
    linear-gradient(135deg, #0A0A08 0%, #1A1510 50%, #0A0A08 100%);
}

.hero-eiffel {
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 260px;
  opacity: 0.1;
  animation: fadeInRight 1.8s ease forwards;
}

.hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  animation: fadeInUp 1s ease 0.2s both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  right: 3rem;
  bottom: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
  animation: fadeInRight 1s ease 0.5s both;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  animation: bounce 2.5s ease infinite;
  z-index: 2;
}
.scroll-hint span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 1px; height: 28px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ---- TRUST STRIP ----------------------------------------- */
.trust-strip {
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.1rem 3rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.7rem; }
.trust-icon { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.trust-text { font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }

/* ---- SECTIONS COMMUNES ----------------------------------- */
section { padding: 6rem 3rem; }

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

/* ---- BOUTONS --------------------------------------------- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  border-bottom: 1px solid var(--gray);
  padding-bottom: 3px;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.btn-ghost-white:hover { color: var(--gold); }

/* ---- CIRCUITS CARDS -------------------------------------- */
.circuits-section { background: var(--black); }

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

.circuit-card {
  position: relative;
  background: var(--dark);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,169,110,0.08);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  overflow: hidden;
}
.circuit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.circuit-card:hover { border-color: rgba(201,169,110,0.25); background: #1D1B16; }
.circuit-card:hover::after { transform: scaleX(1); }
.circuit-card.featured { background: linear-gradient(135deg,#1E1A10,#1A1810); border-color: rgba(201,169,110,0.25); }

.circuit-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,169,110,0.06);
  position: absolute;
  top: 0.8rem; right: 1.2rem;
  line-height: 1;
  user-select: none;
}
.circuit-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 3px 10px;
  margin-bottom: 1.2rem;
}
.circuit-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.circuit-route {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.circuit-route::before { content:''; width:18px; height:1px; background:var(--gold); opacity:0.5; display:inline-block; flex-shrink:0; }
.circuit-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 2rem; }

.circuit-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.circuit-price { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.circuit-price small { font-family: var(--font-body); font-size: 0.68rem; color: var(--text-muted); font-weight: 300; display: block; letter-spacing:0.05em; }
.circuit-arrow {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.circuit-card:hover .circuit-arrow { background: var(--gold); color: var(--black); }

/* ---- GOLD WING SECTION ----------------------------------- */
.goldwing-section {
  background: var(--black-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.goldwing-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin: 1.5rem 0 2rem; }

.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem; }
.spec-item { padding: 0.9rem 1rem; border-left: 2px solid rgba(201,169,110,0.3); }
.spec-value { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--gold); }
.spec-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

.goldwing-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.gw-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}
.gw-ring:nth-child(1) { width: 360px; height: 360px; animation: spinSlow 30s linear infinite; }
.gw-ring:nth-child(2) { width: 280px; height: 280px; border-color: rgba(201,169,110,0.14); }
.gw-ring:nth-child(3) { width: 180px; height: 180px; border-color: rgba(201,169,110,0.22); background: radial-gradient(circle,rgba(201,169,110,0.05) 0%,transparent 70%); }
.gw-icon { position: relative; z-index:2; text-align: center; }
.gw-caption { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(201,169,110,0.45); margin-top:0.8rem; }

/* ---- TESTIMONIALS ---------------------------------------- */
.testimonials-section { background: var(--dark); border-top: 1px solid var(--gold-border); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.stars { color: var(--gold); letter-spacing:4px; font-size: 1rem; display:block; margin-bottom:0.8rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,169,110,0.08);
  position: absolute;
  top: 0.3rem; left: 1.3rem;
  line-height: 1;
}
.testimonial-text { font-size:0.87rem; color:var(--text-muted); line-height:1.75; font-style:italic; padding-top:1rem; margin-bottom:1.5rem; }
.testimonial-author { display:flex; align-items:center; gap:0.8rem; }
.avatar {
  width:34px; height:34px; border-radius:50%;
  background:var(--gray); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:0.85rem; font-weight:700; flex-shrink:0;
}
.author-name { font-size:0.8rem; font-weight:500; color:var(--text); }
.author-info { font-size:0.68rem; color:var(--text-muted); margin-top:1px; }

/* ---- CTA BAND -------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg,#1A1510 0%,#0E0C08 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 4rem 3rem;
  text-align: center;
}
.cta-band .section-title { margin: 0.8rem 0 1.5rem; }
.cta-band p { color:var(--text-muted); font-size:0.95rem; max-width:480px; margin: 0 auto 2.5rem; }
.cta-actions { display:flex; justify-content:center; align-items:center; gap:2rem; flex-wrap:wrap; }

/* ---- FOOTER ---------------------------------------------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  padding: 3rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { font-family:var(--font-display); font-size:1.1rem; font-weight:700; color:var(--gold); letter-spacing:0.1em; text-transform:uppercase; }
.footer-logo span { font-weight:400; font-style:italic; color:var(--text-muted); }
.footer-links { display:flex; gap:2rem; flex-wrap:wrap; }
.footer-links a { font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); transition:color var(--transition); }
.footer-links a:hover { color:var(--gold); }
.footer-copy { font-size:0.68rem; color:var(--text-faint); }

/* ---- PAGE HERO (pages internes) -------------------------- */
.page-hero {
  padding: 10rem 3rem 5rem;
  background: var(--black-soft);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,169,110,0.05) 0%,transparent 70%);
}
.page-hero-content { position:relative; z-index:1; max-width:700px; }
.breadcrumb { font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-muted); margin-bottom:1.5rem; }
.breadcrumb a { color:var(--gold); }
.breadcrumb span { margin:0 0.5rem; }
.page-title {
  font-family:var(--font-display);
  font-size: clamp(2.2rem,4.5vw,3.8rem);
  font-weight:900;
  line-height:1.05;
  color:var(--white);
  margin-bottom:1.2rem;
}
.page-title em { font-style:italic; color:var(--gold); font-weight:400; }
.page-intro { font-size:1rem; color:var(--text-muted); line-height:1.75; max-width:520px; }

/* ---- ANIMATIONS ------------------------------------------ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(28px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(20px); }
  to { opacity:1; transform:translateX(0); }
}
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(7px); }
}
@keyframes spinSlow {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}

.reveal {
  opacity:0;
  transform:translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:none; }

/* ---- RESPONSIVE ------------------------------------------ */
@media (max-width: 900px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 0 1.5rem 4rem; }
  .circuits-grid { grid-template-columns: 1fr; }
  .goldwing-section { grid-template-columns: 1fr; gap: 3rem; }
  .goldwing-visual { display:none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { display:none; }
  .trust-strip { gap: 1.5rem; padding: 1rem 1.5rem; }
  .footer-inner { flex-direction:column; text-align:center; }
  .footer-links { justify-content:center; }
}

@media (max-width: 600px) {
  .nav-links { display:none; }
  .hero-title { font-size: 2.4rem; }
  .section-header { flex-direction:column; align-items:flex-start; }
}
