/* ═══════════════════════════════════════════════════
   CAFÉ DU PORT — Feuille de style partagée
   Palette : rouge épicerie normande #9B1B1B / #6E1010
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --rouge:    #9B1B1B;
  --rouge-dk: #6E1010;
  --rouge-lt: #C0392B;
  --gold:     #C9A84C;
  --cream:    #F8F1EE;
  --white:    #FDFAF9;
  --text:     #1a1a1a;
  --muted:    #5a5a5a;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Raleway',sans-serif; background:var(--white); color:var(--text); overflow-x:hidden; }

/* ── NAV ──────────────────────────────────────────── */
nav {
  position:fixed; top:0; width:100%; z-index:1000;
  padding:1.1rem 3rem;
  display:flex; align-items:center; justify-content:space-between;
  background:var(--rouge-dk);
  border-bottom:2px solid rgba(201,168,76,.3);
}
.nav-logo { font-family:'Playfair Display',serif; font-size:1.45rem; color:var(--gold); letter-spacing:.03em; text-decoration:none; line-height:1.2; }
.nav-logo span { color:rgba(255,255,255,.65); font-weight:300; font-size:.72rem; display:block; letter-spacing:.2em; text-transform:uppercase; font-family:'Raleway',sans-serif; }
.nav-links { display:flex; gap:1.8rem; list-style:none; align-items:center; }
.nav-links a {
  color:rgba(255,255,255,.78); text-decoration:none; font-size:.76rem; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase; transition:color .2s; padding:.2rem 0;
  border-bottom:2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color:var(--gold); border-bottom-color:var(--gold); }
.nav-cta {
  background:var(--gold); color:var(--rouge-dk); padding:.5rem 1.3rem; border-radius:2px;
  font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  text-decoration:none; transition:all .2s; white-space:nowrap;
}
.nav-cta:hover { background:#e0bc6a; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:.3rem; }
.nav-hamburger span { width:24px; height:2px; background:#fff; border-radius:2px; transition:all .3s; display:block; }
.nav-mobile { display:none; }

/* ── PAGE HEADER (sous-pages) ─────────────────────── */
.page-header {
  padding-top:80px; height:280px;
  position:relative; display:flex; align-items:center;
  overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
}
.page-header::after {
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(105deg, rgba(110,16,16,.92) 0%, rgba(110,16,16,.6) 60%, rgba(0,0,0,.3) 100%);
}
.page-header-content { position:relative; z-index:2; padding:0 4rem; }
.page-header-content .eyebrow {
  font-size:.68rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); font-weight:700; display:flex; align-items:center; gap:.6rem;
  margin-bottom:.7rem;
}
.page-header-content .eyebrow::before { content:''; width:24px; height:2px; background:var(--gold); }
.page-header-content h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,4vw,3.5rem); color:#fff; font-weight:900; line-height:1.1;
}
.page-header-content h1 em { color:var(--gold); font-style:italic; }

/* ── DELIVERY STRIP ───────────────────────────────── */
.delivery-strip {
  background:var(--rouge); padding:.9rem 3rem;
  display:flex; align-items:center; justify-content:center; gap:2.5rem; flex-wrap:wrap;
}
.delivery-strip p { color:rgba(255,255,255,.75); font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; font-weight:500; }
.delivery-badges { display:flex; gap:.8rem; }
.badge {
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
  padding:.4rem 1.1rem; border-radius:30px; color:#fff; font-size:.78rem; font-weight:600;
  display:flex; align-items:center; gap:.5rem; text-decoration:none; transition:all .2s;
}
.badge:hover { background:rgba(201,168,76,.2); border-color:var(--gold); color:var(--gold); }
.badge-dot { width:8px; height:8px; border-radius:50%; }
.badge-dot.uber { background:#00c896; }
.badge-dot.deliveroo { background:#00cba9; }

/* ── SECTIONS UTILITAIRES ─────────────────────────── */
.section-label {
  font-size:.68rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--rouge); font-weight:700; margin-bottom:.7rem;
  display:flex; align-items:center; gap:.8rem;
}
.section-label::after { content:''; width:36px; height:2px; background:var(--rouge); border-radius:2px; }
.section-label.gold { color:var(--gold); }
.section-label.gold::after { background:var(--gold); }
.section-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,3.2vw,2.9rem); font-weight:900;
  color:var(--rouge-dk); line-height:1.15; margin-bottom:1.1rem;
}
.section-title em { color:var(--rouge); font-style:italic; }
.section-title.light { color:#fff; }
.btn-primary {
  background:var(--gold); color:var(--rouge-dk); padding:.85rem 2rem; border-radius:2px;
  font-size:.8rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  text-decoration:none; transition:all .2s; border:2px solid var(--gold); display:inline-block;
}
.btn-primary:hover { background:transparent; color:var(--gold); }
.btn-rouge {
  background:var(--rouge); color:#fff; padding:.85rem 2rem; border-radius:2px;
  font-size:.8rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  text-decoration:none; transition:all .2s; border:2px solid var(--rouge); display:inline-block;
}
.btn-rouge:hover { background:var(--rouge-dk); border-color:var(--rouge-dk); }
.btn-outline {
  background:transparent; color:#fff; padding:.85rem 2rem; border-radius:2px;
  font-size:.8rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  text-decoration:none; transition:all .2s; border:2px solid rgba(255,255,255,.55); display:inline-block;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ── REVEAL ANIMATION ─────────────────────────────── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }
@keyframes fadeUp { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:none; } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.35; } }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background:var(--rouge-dk); color:rgba(255,255,255,.6);
  padding:4rem 3rem 2rem;
}
.footer-top {
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:3rem; margin-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.1); padding-bottom:3rem;
}
.footer-brand p { font-size:.84rem; line-height:1.7; margin-top:1rem; max-width:280px; }
.footer-col h4 { color:#fff; font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700; margin-bottom:1.1rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.55rem; }
.footer-col a { color:rgba(255,255,255,.5); text-decoration:none; font-size:.84rem; transition:color .2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem; font-size:.76rem;
}
.footer-bottom a { color:rgba(255,255,255,.4); text-decoration:none; transition:color .2s; }
.footer-bottom a:hover { color:var(--gold); }
.social-links { display:flex; gap:.7rem; margin-top:1.2rem; }
.social-btn {
  width:35px; height:35px; border-radius:50%;
  border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55); font-size:.85rem; text-decoration:none; transition:all .2s;
}
.social-btn:hover { border-color:var(--gold); color:var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media(max-width:900px) {
  nav { padding:1rem 1.5rem; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .nav-mobile {
    position:fixed; top:62px; left:0; right:0; z-index:999;
    background:var(--rouge-dk); border-top:1px solid rgba(201,168,76,.2);
    padding:1rem 1.5rem 1.5rem; flex-direction:column; gap:.2rem;
  }
  .nav-mobile.open { display:flex; }
  .nav-mobile a { color:rgba(255,255,255,.85); text-decoration:none; font-size:.88rem; font-weight:500; padding:.7rem 0; border-bottom:1px solid rgba(255,255,255,.08); letter-spacing:.08em; text-transform:uppercase; }
  .nav-mobile a:last-child { border-bottom:none; }
  .nav-mobile a.active { color:var(--gold); }
  .page-header { height:220px; }
  .page-header-content { padding:0 2rem; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .delivery-strip { flex-direction:column; gap:1rem; text-align:center; }
}
@media(max-width:600px) {
  .footer-top { grid-template-columns:1fr; }
  .page-header-content h1 { font-size:2rem; }
}
