/* ============================================================
   RETRO-CAMARADES.FR — Feuille de styles principale
   Police : Bebas Neue (titres) + Inter (corps)
   Palette : Noir charbon / Or vintage / Blanc cassé
   ============================================================ */

:root {
  --black:   #0D0D0D;
  --dark:    #1A1A1A;
  --dark2:   #242424;
  --dark3:   #2E2E2E;
  --gold:    #D4A843;
  --gold2:   #E8BC5A;
  --cream:   #F5F0E8;
  --cream2:  #EDE6D8;
  --white:   #FAFAF8;
  --gray:    #888880;
  --red:     #CC3333;
  --green:   #2E7D32;
  --r:       10px;
  --rs:      6px;
  --shadow:  0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--dark); font-size: 15px; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { line-height: 1.2; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  transition: background .3s, box-shadow .3s;
  padding: 0 2rem; height: 70px;
}
.navbar.scrolled { background: rgba(13,13,13,.96); box-shadow: 0 2px 20px rgba(0,0,0,.5); }
.nav-inner { max-width: 1200px; margin: 0 auto; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; letter-spacing: .3px; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 10px; }
.btn-yt { background: var(--gold); color: var(--black); padding: 8px 18px; border-radius: var(--rs); font-size: 13px; font-weight: 700; transition: background .2s; }
.btn-yt:hover { background: var(--gold2); }
.nav-burger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1209 40%, #0D0D0D 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  
  opacity: .18;
}
.hero-content { position: relative; z-index: 1; text-align: center; padding: 0 2rem; max-width: 800px; }
.hero-eyebrow { display: inline-block; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(5rem, 14vw, 10rem); color: var(--white); line-height: .9; margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.6); margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.3); font-size: 1.5rem; cursor: pointer; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary { display: inline-block; background: var(--gold); color: var(--black); padding: 12px 28px; border-radius: var(--rs); font-weight: 700; font-size: 14px; transition: background .2s, transform .1s; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); padding: 12px 28px; border-radius: var(--rs); font-weight: 600; font-size: 14px; border: 1.5px solid rgba(255,255,255,.3); transition: border-color .2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { display: inline-block; background: transparent; color: var(--dark); padding: 10px 24px; border-radius: var(--rs); font-weight: 600; font-size: 14px; border: 1.5px solid var(--dark); transition: all .2s; }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-light { display: inline-block; background: transparent; color: var(--white); padding: 10px 24px; border-radius: var(--rs); font-weight: 600; font-size: 14px; border: 1.5px solid rgba(255,255,255,.3); transition: all .2s; cursor: pointer; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-sm { display: inline-block; padding: 5px 12px; border-radius: var(--rs); font-size: 12px; font-weight: 600; border: 1px solid currentColor; transition: all .2s; }
.btn-full { width: 100%; text-align: center; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--dark); color: var(--white); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; background: var(--gold); color: var(--black); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; margin-bottom: 1rem; }
.section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: .75rem; }
.section-sub { color: var(--gray); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-dark .section-sub { color: rgba(255,255,255,.5); }
.section-more { text-align: center; margin-top: 3rem; }
.empty-state { text-align: center; padding: 3rem; color: var(--gray); font-size: 15px; grid-column: 1/-1; }

/* ── CARTE ───────────────────────────────────────────────── */
.map-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.map-filter { padding: 7px 16px; border-radius: 999px; border: 1.5px solid var(--cream2); background: var(--white); color: var(--dark); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; }
.map-filter.active, .map-filter:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.map-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 1rem; height: 520px; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
#map { width: 100%; height: 100%; }
.map-sidebar { background: var(--dark); color: var(--white); overflow-y: auto; padding: 1.5rem; }
.map-sidebar-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 1rem; color: rgba(255,255,255,.3); text-align: center; }
.map-sidebar-placeholder span { font-size: 2.5rem; }
.map-detail h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.map-cat-badge { display: inline-block; background: var(--gold); color: var(--black); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: .75rem; }
.map-addr, .map-desc, .map-spec { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: .5rem; }
.map-contact { display: block; font-size: 13px; color: var(--gold); margin-top: .5rem; }
.map-cta { text-align: center; margin-top: 2rem; }
.map-cta p { color: var(--gray); font-size: 14px; margin-bottom: 1rem; }

/* ── ÉVÉNEMENTS ──────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.events-loading, .shop-loading, .video-loading { text-align: center; padding: 3rem; color: rgba(255,255,255,.4); grid-column: 1/-1; }
.event-card { background: var(--dark2); border: 1px solid var(--dark3); border-radius: var(--r); padding: 1.25rem; display: flex; gap: 1.25rem; transition: border-color .2s; }
.event-card:hover { border-color: var(--gold); }
.event-date { flex-shrink: 0; background: var(--gold); color: var(--black); border-radius: var(--rs); padding: .5rem .75rem; text-align: center; min-width: 54px; }
.event-day { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; }
.event-month { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.event-body { flex: 1; }
.event-type { font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.event-title { font-size: 1rem; font-weight: 700; color: var(--white); margin: .25rem 0; }
.event-lieu { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.event-desc { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: .75rem; }

/* ── BOUTIQUE ────────────────────────────────────────────── */
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.shop-filter { padding: 7px 18px; border-radius: 999px; border: 1.5px solid var(--cream2); background: var(--white); color: var(--dark); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; }
.shop-filter.active, .shop-filter:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--white); border: 1.5px solid var(--cream2); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all .2s; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--cream2); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-body { padding: 1rem; }
.product-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); }
.product-name { font-size: 1rem; font-weight: 700; margin: .25rem 0; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--dark); }

/* ── VIDÉOS ──────────────────────────────────────────────── */
.video-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 2rem; background: var(--dark2); border-radius: var(--r); padding: 5px; max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 2rem; }
.video-tab { flex: 1; padding: 10px 16px; border-radius: var(--rs); border: none; background: transparent; color: rgba(255,255,255,.5); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.video-tab.active { background: var(--gold); color: var(--black); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.video-card { background: var(--dark2); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: transform .2s; }
.video-card:hover { transform: translateY(-3px); }
.video-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.4); color: var(--white); font-size: 2.5rem; transition: background .2s; }
.video-card:hover .video-play-btn { background: rgba(212,168,67,.7); }
.video-duration { position: absolute; bottom: 6px; right: 8px; background: rgba(0,0,0,.8); color: var(--white); font-size: 11px; padding: 2px 6px; border-radius: 3px; }
.video-info { padding: 1rem; }
.video-info h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; line-height: 1.3; }
.video-info p { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.modal-box { background: var(--white); border-radius: var(--r); max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,.1); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; z-index: 1; }
.modal-product { display: grid; grid-template-columns: 1fr 1fr; }
.modal-product-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-product-info { padding: 2rem; }
.modal-product-info h2 { font-size: 1.5rem; font-weight: 800; margin: .5rem 0; }
.modal-price { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.modal-desc { font-size: 14px; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }
.tailles-grid { display: flex; gap: 6px; flex-wrap: wrap; margin-top: .5rem; }
.taille-btn { padding: 6px 14px; border: 1.5px solid var(--cream2); border-radius: var(--rs); background: transparent; cursor: pointer; font-size: 13px; font-weight: 600; transition: all .2s; }
.taille-btn:hover, .taille-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.modal-tailles { margin-bottom: 1.5rem; }
.modal-tailles label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.modal-video { padding: 0; }
.video-iframe-wrap { position: relative; aspect-ratio: 16/9; }
.video-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--r); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--black); color: var(--white); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin-bottom: .75rem; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-social a:hover { color: var(--gold); }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.07); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.ssl-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.25); }
.ssl-dot { width: 6px; height: 6px; border-radius: 50%; background: #2E7D32; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .map-wrap { grid-template-columns: 1fr; height: auto; }
  #map { height: 400px; }
  .map-sidebar { max-height: 260px; }
  .modal-product { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(13,13,13,.98); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; z-index: 899; }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .nav-actions { display: none; }
  .section { padding: 4rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .video-tabs { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 5rem; }
  .map-filters { gap: 6px; }
  .map-filter { font-size: 12px; padding: 6px 12px; }
}
.hero-poster{margin:1.5rem auto;max-width:520px;width:90%}
.hero-poster img{width:100%;border-radius:0;box-shadow:none;background:transparent}
.hero-sub-small{font-size:13px;color:rgba(255,255,255,.35)}
.hero-eyebrow{margin-bottom:.75rem}