/* ============================================================
   APÉRO ENTREPRENEURS – VIRE NORMANDIE
   style.css · Mobile First · v2.0
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --orange:        #F5A623;
  --orange-deep:   #E8920A;
  --orange-light:  #FFF8EC;
  --anthracite:    #2A2A2A;
  --anthracite-md: #444444;
  --offwhite:      #F8F7F4;
  --white:         #FFFFFF;
  --border:        #E8E4DD;
  --text:          #3C3C3C;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow:    0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --ease:      cubic-bezier(.4,0,.2,1);
  --dur:       .3s;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--anthracite); line-height: 1.15; }
h1 { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
h2 .accent { color: var(--orange); }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
h4 { font-size: .875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

.lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--anthracite-md);
  max-width: 660px;
  margin-bottom: 36px;
}

/* ── SECTION COMMONS ────────────────────────────────────────── */
.section { padding: 72px 6%; scroll-margin-top: 70px; }
section[id], div[id] { scroll-margin-top: 70px; }
.section--alt { background: var(--offwhite); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--anthracite);
}
.btn--primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--orange-deep);
  border-color: var(--orange);
  padding: 10px 22px;
}
.btn--ghost:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  border-bottom: 1px solid var(--border);
  transition: height var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  height: 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 4px;
}
.navbar__links a {
  color: var(--anthracite-md);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.navbar__links a:hover { color: var(--anthracite); background: var(--offwhite); }
.navbar__links a.active { color: var(--orange); font-weight: 700; }
.navbar__links .btn--primary { color: var(--white); padding: 8px 20px; font-size: .82rem; }

.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.navbar__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.navbar__drawer {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  padding: 16px 6% 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-110%);
  transition: transform var(--dur) var(--ease);
  z-index: 998;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.navbar__drawer.open { transform: translateY(0); }
.navbar__drawer a {
  color: var(--anthracite-md);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--dur);
}
.navbar__drawer a:hover { background: var(--offwhite); color: var(--anthracite); }
.navbar__drawer .btn--primary { color: var(--white); text-align: center; margin-top: 8px; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-apero.webp');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  filter: brightness(.5) saturate(1.1);
}
/* Désactiver le fixed sur iOS (ne supporte pas background-attachment: fixed) */
@supports (-webkit-touch-callout: none) {
  .hero__bg { background-attachment: scroll; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(42,42,42,.72) 0%, rgba(232,146,10,.18) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 130px 6% 60px;
  animation: fadeUp .9s .15s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--anthracite);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__badge svg { width: 13px; height: 13px; }

.hero__title {
  color: var(--white);
  margin-bottom: 18px;
}
.hero__title .accent { color: var(--orange); }

.hero__quote {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.65;
  max-width: 580px;
}

.hero__since {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__since svg { width: 14px; height: 14px; }

.hero__visits {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#visit-count {
  color: var(--orange);
  font-weight: 800;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero__scroll svg { width: 18px; height: 18px; }

/* ── CONCEPT ────────────────────────────────────────────────── */
.concept__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.concept__infos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.concept__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.concept__info-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}
.concept__info-icon {
  width: 40px; height: 40px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange-deep);
}
.concept__info-icon svg { width: 20px; height: 20px; }
.concept__info-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--anthracite);
  margin-bottom: 3px;
}
.concept__info-text p { font-size: .85rem; color: var(--anthracite-md); }

.concept__card {
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.concept__card::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .12;
}
.concept__card-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}
.concept__card-title .accent { color: var(--orange); }
.concept__rules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.concept__rule {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--dur);
}
.concept__rule:hover { background: rgba(255,255,255,.12); }
.concept__rule-num {
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--anthracite);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
  flex-shrink: 0;
}

/* ── À PROPOS ────────────────────────────────────────────────── */
.apropos__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 44px;
}
/* Colonne gauche : liste des 3 règles */
.apropos__rules {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.apropos__rules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apropos__rule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.apropos__rule-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.apropos__icon-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.apropos__icon-center img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}
.apropos__rule-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--anthracite);
}
/* Colonne droite : QR */
.apropos__qr-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.apropos__qr-col h3 {
  font-size: 1.3rem;
  color: var(--anthracite);
}
.apropos__qr-col h3 .accent { color: var(--orange); }
.apropos__qr-img {
  max-width: 260px;
  border-radius: var(--radius);
  overflow: hidden;
}
.apropos__qr-img img { width: 100%; height: auto; display: block; }

/* ── ORGA CARD HORIZONTAL ────────────────────────────────────── */
.orga__card-horiz {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 28px 24px;
  transition: box-shadow var(--dur) var(--ease);
}
.orga__card-horiz:hover { box-shadow: var(--shadow-lg); }
.orga__photo-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  flex-shrink: 0;
  border: 3px solid var(--orange-light);
}
.orga__body { flex: 1; text-align: left; }
@media (min-width: 640px) {
  .orga__card-horiz {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 28px;
    padding: 28px 32px;
  }
}

/* ── ORGANISATEURS ───────────────────────────────────────────── */
.orga__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 44px;
}
.orga__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.orga__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.orga__photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 15%;
}
.orga__info { padding: 26px 28px; }
.orga__name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--anthracite);
  margin-bottom: 6px;
}
.orga__role {
  display: inline-block;
  background: var(--orange);
  color: var(--anthracite);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.orga__quote {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--anthracite-md);
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin-bottom: 16px;
  font-style: italic;
}
.orga__company { font-size: .82rem; color: #999; font-weight: 700; }
.orga__company a { color: var(--orange-deep); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 44px;
}
/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__group label {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--anthracite);
}
.form__group input,
.form__group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  background: var(--offwhite);
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.form__group textarea { min-height: 128px; resize: vertical; }
.form__submit { margin-top: 4px; }
.form__submit .btn { width: 100%; justify-content: center; }

/* Contact info */
.contact__infos { display: flex; flex-direction: column; gap: 18px; }
.contact__info-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
}
.contact__info-card a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--anthracite-md);
  transition: color var(--dur);
}
.contact__info-card a:hover { color: var(--orange-deep); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  transition: transform var(--dur), opacity var(--dur);
}
.social-btn:hover { transform: translateY(-2px); opacity: .9; }
.social-btn--fb  { background: #1877F2; }
.social-btn--wa  { background: #25D366; }
.social-btn svg  { width: 16px; height: 16px; }

.accueillir-card {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px;
}
.accueillir-card h3 { font-size: 1rem; margin-bottom: 8px; }
.accueillir-card p  { font-size: .88rem; color: var(--anthracite-md); margin-bottom: 16px; line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--anthracite);
  color: rgba(255,255,255,.65);
  padding: 56px 6% 28px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  margin-bottom: 24px;
}
.footer__brand {
  max-width: 260px;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  /* Sur fond sombre le logo couleur reste lisible */
}
.footer__brand p {
  font-size: .85rem;
  line-height: 1.7;
}
.footer__brand strong { color: var(--white); display: block; margin-bottom: 6px; font-size: .95rem; }

.footer__col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color var(--dur);
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .8rem;
}
.footer__bottom a { color: var(--orange); font-weight: 700; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }

/* ── MENTIONS LÉGALES ────────────────────────────────────────── */
.legal-page {
  max-width: 800px;
  margin: 100px auto 80px;
  padding: 0 6%;
}
.legal-page h1 { font-size: 2rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 10px; color: var(--orange-deep); }
.legal-page p, .legal-page li {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--anthracite-md);
  margin-bottom: 8px;
}
.legal-page a { color: var(--orange-deep); text-decoration: underline; }

/* ================================================================
   RESPONSIVE — TABLET  (≥ 640px)
   ================================================================ */
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; }
  .concept__card-title { font-size: 1.5rem; }
  .footer__top { flex-direction: row; flex-wrap: wrap; gap: 40px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .apropos__layout { flex-direction: row; align-items: flex-start; }
  .apropos__rules { flex: 1; }
  .apropos__qr-col { flex: 0 0 280px; }
}

/* ================================================================
   RESPONSIVE — DESKTOP  (≥ 960px)
   ================================================================ */
@media (min-width: 960px) {
  .section { padding: 96px 8%; }
  .navbar__links { display: flex; }
  .navbar__burger { display: none; }
  .navbar__drawer { display: none !important; }

  .concept__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .orga__grid { flex-direction: row; flex-wrap: wrap; }
  .orga__card { flex: 1 1 320px; max-width: 500px; }
  .contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .footer__top { flex-wrap: nowrap; gap: 60px; }
  .apropos__qr-col { flex: 0 0 320px; }
}

/* ================================================================
   RESPONSIVE — WIDE  (≥ 1280px)
   ================================================================ */
@media (min-width: 1280px) {
  .section { padding: 96px 10%; }
  .navbar { padding: 0 10%; }
}

/* ── FACEBOOK PAGE PLUGIN ────────────────────────────────────── */
.fb-page-wrapper {
  background: var(--offwhite);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.fb-page-title {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--anthracite);
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  margin: 0;
}
.fb-page-title .fa-facebook { color: #1877F2; font-size: 1rem; }
.fb-page-container {
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
/* Forcer le widget à prendre toute la largeur disponible */
.fb-page-container .fb-page,
.fb-page-container .fb-page span,
.fb-page-container .fb-page span iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* ── BANNIÈRE COOKIES RGPD ───────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 10000;
  font-size: 14px;
  border-top: 3px solid var(--orange);
}
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--orange); text-decoration: underline; }
#cookie-banner .cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
#cookie-banner button {
  padding: 9px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 700;
  transition: opacity .2s;
}
#cookie-banner button:hover { opacity: .85; }
#cookie-accept { background: var(--orange); color: var(--anthracite); }
#cookie-refuse { background: #444; color: #fff; }

/* ── COMPTEUR DE VISITES (footer) ────────────────────────────── */
.footer__counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer__counter i { color: var(--orange); font-size: .75rem; }
#visit-count { font-weight: 700; color: rgba(255,255,255,.75); }
