@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:wght@400;600;700;800&display=swap');

/* ══ VARIABLES ══ */
:root {
  --yellow:    #F5C800;
  --blue:      #1B5EAA;
  --red:       #E8231A;
  --orange:    #E8722A;
  --black:     #0D0D0D;
  --off-white: #FFFDF0;
  --gray:      #666;
  --radius:    16px;
  --t:         all 0.28s ease;
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Poppins', sans-serif; background: var(--off-white); color: var(--black); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; }
ul    { list-style: none; }

/* ══ TYPOGRAPHY ══ */
h1, h2, h3, h4 { font-family: 'Bangers', cursive; letter-spacing: 2px; line-height: 1; }
.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; border: 2px solid;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 1rem; }
.section-desc  { font-size: 0.95rem; color: var(--gray); line-height: 1.85; }
.accent   { color: var(--red); }
.u-yellow { color: var(--yellow); }
strong    { color: var(--black); }

/* ══ CHECKER DIVIDERS ══ */
.checker      { height: 28px; background: repeating-conic-gradient(var(--yellow) 0% 25%, var(--off-white) 0% 50%) 0 0 / 28px 28px; }
.checker-dark { height: 28px; background: repeating-conic-gradient(var(--black)  0% 25%, var(--yellow)    0% 50%) 0 0 / 28px 28px; }
.checker-blue { height: 28px; background: repeating-conic-gradient(var(--blue)   0% 25%, var(--off-white) 0% 50%) 0 0 / 28px 28px; }
.checker-red  { height: 28px; background: repeating-conic-gradient(var(--red)    0% 25%, var(--off-white) 0% 50%) 0 0 / 28px 28px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.88rem;
  padding: 12px 26px; border-radius: 50px;
  transition: var(--t); cursor: pointer; border: none;
}
.btn-red    { background: var(--red);    color: white;         box-shadow: 4px 4px 0 rgba(0,0,0,0.25); }
.btn-yellow { background: var(--yellow); color: var(--black);  box-shadow: 4px 4px 0 rgba(0,0,0,0.18); }
.btn-blue   { background: var(--blue);   color: white;         box-shadow: 4px 4px 0 rgba(0,0,0,0.20); }
.btn-black  { background: var(--black);  color: var(--yellow); box-shadow: 4px 4px 0 rgba(0,0,0,0.20); }
.btn-red:hover, .btn-yellow:hover, .btn-blue:hover, .btn-black:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.28); }
.btn-outline-dark  { background: transparent; color: var(--black);  border: 3px solid rgba(13,13,13,0.4); }
.btn-outline-dark:hover  { background: var(--black);  color: var(--yellow); border-color: var(--black); }
.btn-outline-white { background: transparent; color: white; border: 3px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* ══ NAV ══ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; background: var(--black);
  border-bottom: 3px solid var(--yellow);
  display: flex; align-items: center; padding: 0 5%;
}
.nav-logo { font-family: 'Bangers', cursive; font-size: 1.9rem; letter-spacing: 3px; color: var(--yellow); margin-right: auto; transition: var(--t); }
.nav-logo:hover { color: white; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-weight: 700; font-size: 0.82rem; letter-spacing: 1px; color: rgba(255,255,255,0.55); padding: 8px 14px; border-radius: 8px; transition: var(--t); }
.nav-links a:hover { color: var(--yellow); background: rgba(245,200,0,0.1); }
.nav-links a.active { color: var(--yellow); }
.nav-cta { margin-left: 6px; font-size: 0.82rem !important; padding: 10px 20px !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--yellow); border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: var(--black); border-bottom: 3px solid var(--yellow); padding: 1rem 5% 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; font-weight: 700; font-size: 1.05rem; color: rgba(255,255,255,0.65); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ══ FOOTER ══ */
.site-footer { background: var(--black); border-top: 3px solid var(--yellow); padding: 4rem 5% 2rem; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name { font-family: 'Bangers', cursive; font-size: 2.4rem; letter-spacing: 3px; color: var(--yellow); margin-bottom: 0.5rem; }
.footer-brand-desc { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-col-title  { font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 2px; color: var(--yellow); margin-bottom: 1rem; }
.footer-col-links  { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: var(--t); }
.footer-col-links a:hover { color: var(--yellow); }
.footer-contact-item { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 8px; line-height: 1.7; }
.footer-contact-item a { color: var(--yellow); }
.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--yellow); }

/* ══ TICKER ══ */
.ticker-strip { background: var(--black); overflow: hidden; padding: 14px 0; }
.ticker-inner { display: flex; gap: 3rem; width: max-content; animation: ticker 22s linear infinite; white-space: nowrap; }
.ticker-item  { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 3px; color: var(--yellow); display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.ticker-sep   { color: var(--red); font-size: 1.1rem; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ══ SCROLL REVEAL ══ */
[data-reveal]         { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-36px); opacity: 0; }
[data-reveal="right"] { transform: translateX(36px);  opacity: 0; }
[data-reveal="left"].visible,
[data-reveal="right"].visible { transform: translateX(0); opacity: 1; }

/* ══ BREADCRUMB ══ */
.breadcrumb { font-size: 0.75rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.8rem; }
.breadcrumb a { color: var(--yellow); }

/* ══ HAND SVG ══ */
.hand-svg { height: 0.85em; width: auto; display: inline-block; vertical-align: -0.18em; }

/* ══ LOGO PNG instances ══ */
/* Filtre : bleu source #1B5EAA → jaune #F5C800 (fonds sombres) */
.nav-logo-img    { height: 44px; width: auto; display: block;
                   filter: hue-rotate(197deg) saturate(2) brightness(1.45); }
.hero-logo-img   { height: clamp(9rem, 20vw, 16rem); width: auto; }
.footer-logo-img { height: 56px; width: auto;
                   filter: hue-rotate(197deg) saturate(2) brightness(1.45); }

/* Hand SVG jaune sur fonds sombres (ticker, badges noirs, quote-card) */
.ticker-item .hand-svg,
.hero-badge .hand-svg,
.quote-card .hand-svg { filter: hue-rotate(197deg) saturate(2) brightness(1.45); }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
