@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ═══════════════════════════════════════
   Bes'TofBoissons — Styles partagés v2
   Fornaxis — Juin 2026
═══════════════════════════════════════ */

:root {
  --red:      #C0392B;
  --red-dark: #922B21;
  --bg:       #FFFFFF;
  --bg-alt:   #F5F5F5;
  --text:     #1A1A1A;
  --muted:    #777777;
  --border:   #E8E0D4;
  --shadow:   0 1px 6px rgba(0,0,0,.08);
  --radius:   4px;
  --max-w:    1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; font-size: 15px; line-height: 1.7; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Bebas Neue', Georgia, serif; text-transform: uppercase; line-height: 1.05; }
h1 { font-size: clamp(64px, 12vw, 140px); letter-spacing: 2px; }
h2 { font-size: clamp(40px, 6vw, 56px); letter-spacing: 1px; }
h3 { font-size: clamp(22px, 3vw, 32px); letter-spacing: .5px; }
.accent { color: var(--red); }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Section label */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--red);
  box-shadow: 0 2px 12px rgba(192,57,43,.25);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; display: block; background: #fff; border-radius: 50%; padding: 3px; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: #fff; transition: width .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Phone button — blanc sur rouge */
.nav-tel {
  display: flex; align-items: center; gap: 8px;
  background: #fff; color: var(--red);
  padding: 9px 16px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  transition: background .2s; white-space: nowrap;
}
.nav-tel:hover { background: rgba(255,255,255,.9); color: var(--red); }
.nav-tel svg { width: 15px; height: 15px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: all .3s; }

.mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid rgba(192,57,43,.15); padding: 16px 24px 24px; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .mobile-tel {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 12px 20px; border-radius: var(--radius);
  justify-content: center; font-weight: 700; margin-top: 10px; border-bottom: none;
}

/* ── BOUTONS ── */
.btn-primary {
  background: var(--red); color: #fff;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; letter-spacing: .04em;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); color: #fff; }

.btn-outline {
  background: transparent; color: var(--red);
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: all .2s; border: 1.5px solid var(--red);
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-family: inherit;
}
.btn-outline:hover { background: rgba(192,57,43,.06); }

.btn-outline-dark {
  background: transparent; color: var(--text);
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; letter-spacing: .04em;
  transition: all .2s; border: 1.5px solid #ccc;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
}
.btn-outline-dark:hover { border-color: var(--text); }

/* ── PAGE HERO (pages internes) ── */
.page-hero { background: var(--bg-alt); padding: 100px 0 48px; border-bottom: 1px solid var(--border); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--text); }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 540px; margin-top: 14px; line-height: 1.65; }

/* ── FOOTER ── */
footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 40px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 28px; }
.footer-brand-name { font-family: Georgia, serif; font-size: 17px; font-weight: bold; color: var(--text); display: block; }
.footer-brand-sub { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-top: 2px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 270px; color: var(--muted); }
.footer-col h4 { color: var(--text); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: var(--muted); font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom > p { font-size: 12px; color: var(--muted); }
.footer-alcool { font-size: 12px; color: #aaa; font-style: italic; }

/* ── INSTAGRAM ── */
.insta-section { padding: 56px 0 48px; background: #fff; border-top: 1px solid var(--border); }
.insta-header { text-align: center; margin-bottom: 28px; }
.insta-handle { font-family: 'Segoe UI', system-ui, sans-serif; font-size: 15px; color: var(--muted); display: inline-block; margin-top: 4px; transition: color .2s; }
.insta-handle:hover { color: var(--red); }
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.insta-post { position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: block; }
.insta-img { width: 100%; height: 100%; background: #F5F5F5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border-right: 1px solid var(--border); }
.insta-post:last-child .insta-img { border-right: none; }
.insta-brand-initial { font-family: 'Bebas Neue', Georgia, serif; font-size: 64px; color: var(--red); line-height: 1; letter-spacing: 2px; }
.insta-brand-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #aaa; font-weight: 600; }
.insta-overlay { position: absolute; inset: 0; background: rgba(192,57,43,.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .22s ease; }
.insta-post:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; margin-top: 32px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE PARTAGÉ ── */
@media (max-width: 768px) {
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-post:nth-child(n+4) { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: clamp(52px, 14vw, 80px); }
}
