/* ===========================
   ZANZANA — COMMON STYLES
   Partagé entre toutes les pages
   =========================== */

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

/* BASE */
body {
  background-color: #080808;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ACCESSIBILITÉ — FOCUS CLAVIER */
:focus-visible {
  outline: 2px solid #FF2020;
  outline-offset: 3px;
}

/* FOOTER */
.site-footer {
  background-color: #080808;
  border-top: 2px solid #FF2020;
  padding: 36px 40px;
  text-align: center;
}
.site-footer .footer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.site-footer .footer-sub {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

/* BANDEAU CONSENTEMENT */
#zanzana-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111111;
  border-top: 2px solid #FF2020;
  padding: 24px 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Barlow', sans-serif;
}
#zanzana-consent p {
  color: #ffffff;
  opacity: 0.85;
  font-size: 14px;
  margin: 0;
  flex: 1;
}
#zanzana-consent a { color: #FF2020; text-decoration: none; }
#zanzana-consent a:hover { text-decoration: underline; }

.consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.consent-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid #FF2020;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.consent-btn-accept { background: #FF2020; color: #080808; }
.consent-btn-accept:hover,
.consent-btn-accept:focus-visible { background: #cc0000; border-color: #cc0000; }
.consent-btn-refuse { background: transparent; color: #FF2020; }
.consent-btn-refuse:hover,
.consent-btn-refuse:focus-visible { background: #FF2020; color: #080808; }

@media (max-width: 600px) {
  #zanzana-consent { flex-direction: column; padding: 20px; text-align: center; }
  .consent-buttons { width: 100%; justify-content: center; }
}
