/* =========================================
   ILA PIZZA : feuille de style
   DA : noir, rouge, or
   ========================================= */

:root, [data-theme="dark"] {
  --bg-dark: #0E0E0E;
  --bg-darker: #060606;
  --bg-card: #171717;
  --bg-elev: #1F1F1F;
  --primary: #E63946;
  --primary-dark: #B91C2B;
  --accent: #F4C542;
  --accent-2: #00843D;
  --text: #F5EFE4;
  --text-muted: #B5AC9E;
  --border: #2A2A2A;
  --shadow: 0 20px 60px rgba(0,0,0,.6);
  --radius: 14px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --header-bg: rgba(10,10,10,.85);
  --menu-bg-a: rgba(14,14,14,.92);
  --menu-bg-b: rgba(255,255,255,.01);
  --map-filter: invert(.9) hue-rotate(180deg) saturate(.6);
  --hero-gradient: radial-gradient(ellipse at top right, rgba(230,57,70,.18), transparent 50%),
                   radial-gradient(ellipse at bottom left, rgba(244,197,66,.12), transparent 60%),
                   linear-gradient(180deg, #0a0a0a, #111);
}

[data-theme="light"] {
  --bg-dark: #FBF6EC;
  --bg-darker: #F3ECDC;
  --bg-card: #FFFFFF;
  --bg-elev: #FAF4E7;
  --primary: #C8102E;
  --primary-dark: #9A0A20;
  --accent: #B8860B;
  --accent-2: #006B30;
  --text: #1A1410;
  --text-muted: #6B5D4E;
  --border: #E8DECB;
  --shadow: 0 20px 60px rgba(180, 100, 40, 0.18);
  --header-bg: rgba(251,246,236,.92);
  --menu-bg-a: rgba(251,246,236,.92);
  --menu-bg-b: rgba(0,0,0,.02);
  --map-filter: none;
  --hero-gradient: radial-gradient(ellipse at top right, rgba(200,16,46,.10), transparent 55%),
                   radial-gradient(ellipse at bottom left, rgba(184,134,11,.10), transparent 60%),
                   linear-gradient(180deg, #FDF9F0, #F3ECDC);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.script {
  font-family: 'Great Vibes', cursive;
  color: var(--primary);
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1;
  letter-spacing: 0;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  letter-spacing: .04em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: 0 0 0 3px rgba(230,57,70,.2);
}
.brand span { color: var(--primary); }

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); }

.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary);
  color: white;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 800; font-size: 17px;
  letter-spacing: .02em;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(230,57,70,.4);
}
.btn-call span:first-child { font-size: 18px; }
.btn-call:hover { background: var(--primary-dark); transform: translateY(-2px); }

.menu-toggle { display: none; background: transparent; color: var(--text); font-size: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-gradient);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23ffffff08'/></svg>");
  z-index: -1;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
}
.hero-content .script { font-size: 3.5rem; display: block; margin-bottom: -10px; }
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 24px;
}
.hero-content h1 .accent { color: var(--primary); }
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stars {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(244,197,66,.1);
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(244,197,66,.3);
  margin-bottom: 20px;
  font-size: 14px;
}
.hero-stars .stars { color: var(--accent); letter-spacing: 2px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 10px 30px rgba(230,57,70,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(230,57,70,.5); }
.btn-ghost {
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.4s;
}
.hero-img-wrap:hover img { transform: scale(1.1); }
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45));
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); display: grid; place-items: center;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(230,57,70,.5);
}
.hero-badge-txt { color: white; }
.hero-badge-txt strong { display: block; font-family: 'Playfair Display', serif; font-size: 18px; }
.hero-badge-txt span { font-size: 13px; opacity: .8; }

.hero-floating {
  position: absolute;
  background: #FFFFFF;
  color: #111;
  border: 0;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 0 3px rgba(244,197,66,.22);
  font-size: 13px;
  font-weight: 600;
  z-index: 3;
}
.hero-floating.f1 { top: 40px; right: -20px; animation: float 6s ease-in-out infinite; }
.hero-floating.f2 { bottom: 80px; left: -30px; animation: float 6s ease-in-out infinite reverse; }
.hero-floating strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -.01em;
}
.hero-floating span { color: #555; font-size: 12px; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .script { font-size: 3rem; display: block; margin-bottom: -10px; }
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Promo banner ---------- */
.promo-strip {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.marquee {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.marquee span { display: inline-flex; align-items: center; gap: 40px; }
.marquee .dot { color: var(--accent); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-content .script { font-size: 3rem; display: block; margin-bottom: -10px; }
.about-content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-top: 32px;
}
.feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(230,57,70,.12);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature strong { display: block; font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 2px; }
.feature p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Offers ---------- */
.offers { background: var(--bg-darker); }
.offers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.offer-card {
  position: relative;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  overflow: hidden;
  transition: all .3s;
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.offer-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230,57,70,.2), transparent 70%);
}
.offer-card.featured {
  background: linear-gradient(145deg, var(--primary-dark), #7a1320);
  border-color: var(--accent);
}
.offer-card.featured .offer-price { color: var(--accent); }
.offer-badge {
  display: inline-block;
  background: var(--accent); color: #111;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 18px;
}
.offer-card h3 {
  font-size: 1.6rem; margin-bottom: 12px;
}
.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 14px 0;
}
.offer-price small { font-size: 1.2rem; vertical-align: top; }
.offer-card p { color: var(--text-muted); font-size: 14px; }
.offer-card ul { list-style: none; text-align: left; margin-top: 20px; }
.offer-card li {
  padding: 10px 0;
  border-top: 1px dashed rgba(255,255,255,.1);
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.offer-card li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
}

/* ---------- Menu ---------- */
.menu-section {
  background:
    linear-gradient(180deg, var(--menu-bg-a), var(--menu-bg-a)),
    repeating-linear-gradient(45deg, transparent, transparent 20px, var(--menu-bg-b) 20px, var(--menu-bg-b) 21px);
}
.menu-tabs {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 14px; font-weight: 600;
  transition: all .2s;
}
.menu-tab:hover { border-color: var(--primary); color: var(--primary); }
.menu-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade .4s; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-heading {
  text-align: center;
  margin-bottom: 40px;
}
.menu-heading .script { font-size: 3rem; }
.menu-heading h3 { font-size: 2rem; margin-top: 4px; }
.menu-heading .sizes {
  display: inline-flex; gap: 20px;
  margin-top: 14px;
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
}
.menu-heading .sizes span { color: var(--text-muted); }
.menu-heading .sizes strong { color: var(--accent); }

.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 32px;
}
.menu-item {
  padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.menu-item-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.menu-item-head h4 {
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
}
.menu-panel.creme .menu-item-head h4 { color: #6ec6f0; }
.menu-panel.originale .menu-item-head h4 { color: var(--accent); }
.menu-item-price {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-item-price b { color: var(--text); }
.menu-item p { font-size: 13px; color: var(--text-muted); font-style: italic; }

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 14px;
}
.menu-note b { color: var(--accent); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.6));
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  color: white; z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  opacity: 0; transform: translateY(10px);
  transition: all .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: none; }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-darker); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all .3s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.review-card::before {
  content: '"';
  position: absolute; top: -10px; left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: var(--primary);
  opacity: .2;
  line-height: 1;
}
.review-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { color: var(--text); font-size: 15px; margin-bottom: 20px; }
.review-author {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid; place-items: center;
  font-weight: 800; color: white;
}
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12px; color: var(--text-muted); }

.google-badge {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 40px;
  padding: 14px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
}
.google-badge strong { font-size: 18px; color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: stretch;
}
.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: 1px solid var(--border); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(230,57,70,.12); color: var(--primary);
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-family: 'Playfair Display', serif; font-size: 15px; margin-bottom: 4px; }
.contact-row p, .contact-row a { color: var(--text-muted); font-size: 14px; }
.contact-row a:hover { color: var(--primary); }
.hours-list { list-style: none; font-size: 14px; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  color: var(--text-muted);
}
.hours-list li.today {
  color: var(--accent); font-weight: 700;
}
.hours-list li span:first-child { text-transform: capitalize; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 500px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 500px; filter: var(--map-filter); }

/* ---------- Blog teaser ---------- */
.blog-teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-tag {
  display: inline-block;
  background: rgba(244,197,66,.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.blog-card .read-more { color: var(--primary); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.blog-card .read-more:hover { gap: 10px; transition: gap .2s; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer p, .footer a { color: var(--text-muted); font-size: 14px; }
.footer a:hover { color: var(--primary); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }

.footer-brand p { max-width: 340px; margin-top: 14px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text);
  transition: all .2s;
}
.socials a:hover { background: var(--primary); border-color: var(--primary); color: white; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- CTA block ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--primary-dark), #5a0e18);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}
.cta-block::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,197,66,.2), transparent 60%);
}
.cta-block h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; position: relative; }
.cta-block p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-block .btn { position: relative; }

/* ---------- Blog article page ---------- */
.article-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  background-size: cover !important;
  background-position: center !important;
  color: #fff;
}
.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.82) 100%),
    radial-gradient(ellipse at center, rgba(230,57,70,.25), transparent 70%);
  z-index: 0;
}
.article-hero .container { max-width: 820px; position: relative; z-index: 1; }
.article-hero .eyebrow { color: var(--accent); }
.article-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.article-hero p {
  color: rgba(255,255,255,.92) !important;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.article-hero .back-home { color: rgba(255,255,255,.8); }
.article-hero .back-home:hover { color: var(--accent); }
.article-meta {
  display: flex; gap: 20px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.article-body { padding: 60px 0 100px; }
.article-body .container { max-width: 780px; }
.article-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
  color: var(--accent);
}
.article-body h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--primary);
}
.article-body p { font-size: 1.05rem; margin-bottom: 20px; color: #D4CFC4; }
.article-body ul, .article-body ol { margin: 20px 0 24px 20px; color: #D4CFC4; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 18px 24px;
  background: var(--bg-card);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}
.article-body img {
  border-radius: var(--radius);
  margin: 30px 0;
  box-shadow: var(--shadow);
}
.article-body a { color: var(--primary); text-decoration: underline; }

.back-home {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 14px;
  transition: color .2s;
}
.back-home:hover { color: var(--primary); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .offers-grid, .reviews-grid, .blog-teaser-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-floating { display: none; }
  section { padding: 70px 0; }
  .cta-block { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 20px; gap: 16px;
  }
  .menu-toggle { display: block; }
  .btn-call span { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-features { grid-template-columns: 1fr; }
  .map-wrap { min-height: 350px; }
  .map-wrap iframe { min-height: 350px; }
}

/* =========================================
   Theme toggle button
   ========================================= */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 18px;
  margin-left: 8px;
  transition: all .25s;
  line-height: 1;
}
.theme-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(15deg);
}
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }

/* Smooth theme transition */
html { transition: background-color .4s ease; }
body, .header, .footer, .offer-card, .review-card, .menu-tab,
.contact-info, .blog-card, .feature, .hero-floating, .map-wrap,
.socials a { transition: background-color .35s ease, border-color .35s ease, color .35s ease; }

/* =========================================
   Light mode : surcharges
   ========================================= */
[data-theme="light"] body {
  background: var(--bg-dark);
}

/* Header in light mode */
[data-theme="light"] .header {
  border-bottom-color: rgba(0,0,0,.06);
}
[data-theme="light"] .brand-mark {
  box-shadow: 0 0 0 3px rgba(200,16,46,.15);
}
[data-theme="light"] .nav-links a { color: var(--text); }

/* Hero in light mode */
[data-theme="light"] .hero-img-wrap::after {
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
}
[data-theme="light"] .hero-stars {
  background: rgba(184,134,11,.12);
  border-color: rgba(184,134,11,.35);
  color: var(--text);
}
[data-theme="light"] .hero-content p { color: #4A4036; }

/* Promo marquee : rouge dans les deux themes */
[data-theme="light"] .promo-strip { border-color: rgba(0,0,0,.08); }

/* About features */
[data-theme="light"] .feature {
  background: var(--bg-card);
  box-shadow: 0 4px 14px rgba(180,100,40,.08);
}
[data-theme="light"] .feature-icon {
  background: rgba(200,16,46,.10);
}

/* Offers */
[data-theme="light"] .offer-card {
  background: linear-gradient(145deg, #fff, #FAF4E7);
  box-shadow: 0 4px 18px rgba(180,100,40,.1);
}
[data-theme="light"] .offer-card li {
  border-top-color: rgba(0,0,0,.08);
}
[data-theme="light"] .offer-card.featured {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-color: var(--accent);
  color: #fff;
}
[data-theme="light"] .offer-card.featured p,
[data-theme="light"] .offer-card.featured li { color: #fff; }
[data-theme="light"] .offer-card.featured .offer-price { color: var(--accent); }

/* Menu tabs */
[data-theme="light"] .menu-tab {
  background: #fff;
  box-shadow: 0 2px 6px rgba(180,100,40,.08);
}
[data-theme="light"] .menu-heading .sizes {
  background: #fff;
  box-shadow: 0 2px 6px rgba(180,100,40,.08);
}
[data-theme="light"] .menu-item {
  border-bottom-color: rgba(0,0,0,.08);
}

/* Gallery overlay stays dark (readable captions) */

/* Reviews */
[data-theme="light"] .review-card {
  background: #fff;
  box-shadow: 0 4px 18px rgba(180,100,40,.08);
}
[data-theme="light"] .review-card::before {
  color: var(--primary);
  opacity: .15;
}
[data-theme="light"] .google-badge {
  background: #fff;
  box-shadow: 0 2px 10px rgba(180,100,40,.1);
}

/* Blog cards */
[data-theme="light"] .blog-card {
  background: #fff;
  box-shadow: 0 6px 24px rgba(180,100,40,.1);
}

/* Contact */
[data-theme="light"] .contact-info {
  background: #fff;
  box-shadow: 0 6px 24px rgba(180,100,40,.1);
}
[data-theme="light"] .contact-row {
  border-top-color: rgba(0,0,0,.08);
}
[data-theme="light"] .contact-row:last-child {
  border-bottom-color: rgba(0,0,0,.08);
}
[data-theme="light"] .contact-icon {
  background: rgba(200,16,46,.10);
}
[data-theme="light"] .map-wrap {
  box-shadow: 0 6px 24px rgba(180,100,40,.1);
}

/* Footer light */
[data-theme="light"] .footer {
  border-top-color: rgba(0,0,0,.08);
}
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0,0,0,.08);
}
[data-theme="light"] .socials a {
  background: #fff;
  box-shadow: 0 2px 6px rgba(180,100,40,.08);
}

/* Article hero stays dark (always readable on image) */

/* Article body text in light mode */
[data-theme="light"] .article-body p,
[data-theme="light"] .article-body ul,
[data-theme="light"] .article-body ol { color: #3A322A; }
[data-theme="light"] .article-body blockquote {
  background: #FAF4E7;
  color: var(--text);
}
[data-theme="light"] .article-body table th {
  background: #FAF4E7;
}

/* Review avatars keep gradient */
[data-theme="light"] .review-avatar {
  color: #fff;
}

/* Btn ghost light */
[data-theme="light"] .btn-ghost {
  border-color: rgba(0,0,0,.15);
  color: var(--text);
}
[data-theme="light"] .btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* =========================================
   Ajouts 2026-08-27 : fiche pratique, prix, FAQ, icones
   ========================================= */

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #fff;
  padding: 12px 20px; border-radius: 0 0 12px 0;
  font-weight: 700; z-index: 999;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Icônes SVG ---------- */
.ico { width: 20px; height: 20px; fill: currentColor; display: block; }
.hero-badge-icon .ico { fill: #fff; width: 24px; height: 24px; }
.btn-call .ico { width: 18px; height: 18px; }
.feature-icon .ico, .contact-icon .ico { width: 21px; height: 21px; }

/* ---------- Fiche pratique ---------- */
.quickfacts { padding: 44px 0 10px; }
.qf-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.qf-grid li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.qf-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary); font-weight: 800;
}
.qf-value { font-size: 14.5px; line-height: 1.5; color: var(--text); }
.qf-value a:hover { color: var(--primary); }
.status-pill {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 4px; padding: 4px 11px 4px 9px;
  border-radius: 100px; font-size: 12.5px; font-weight: 700;
  background: rgba(0,132,61,.14); color: #4ec27f;
}
.status-pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.status-pill.is-closed { background: rgba(230,57,70,.14); color: var(--primary); }

/* ---------- Tableau des prix ---------- */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.price-table {
  width: 100%; border-collapse: collapse;
  min-width: 520px;
  font-size: 15.5px;
}
.price-table th, .price-table td { padding: 16px 20px; text-align: center; }
.price-table thead th {
  background: rgba(230,57,70,.10);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
}
.price-table thead th:first-child, .price-table tbody th { text-align: left; }
.price-table tbody th {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--text);
}
.price-table tbody tr { border-top: 1px solid var(--border); }
.price-table tbody td { color: var(--text); font-weight: 700; }
.price-table tbody td:last-child { color: var(--text-muted); font-weight: 500; }
.price-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }

.offers-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
.h2-like { font-size: 2rem; }
.menu-date { display: inline-block; margin-top: 8px; font-size: 13px; opacity: .75; }

/* ---------- Étiquette nouveauté ---------- */
.tag-new {
  background: var(--accent); color: #111;
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
  white-space: nowrap;
}
.menu-item.new { border-color: rgba(244,197,66,.45); }

/* ---------- FAQ ---------- */
.faq-section { padding: 90px 0; background: var(--bg-darker); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 56px 20px 22px;
  position: relative;
  transition: background-color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(230,57,70,.06); }
.faq-item summary h3 {
  display: inline; font-size: 1.08rem; font-weight: 700; color: var(--text);
}
.faq-item summary::after {
  content: "";
  position: absolute; right: 24px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ---------- Horaires ---------- */
.hours-list li.closed span:last-child { color: var(--primary); font-weight: 600; }

/* ---------- Light mode ---------- */
[data-theme="light"] .qf-grid li { background: #fff; border-color: var(--border); }
[data-theme="light"] .price-table-wrap { background: #fff; }
[data-theme="light"] .price-table thead th { background: rgba(200,16,46,.08); }
[data-theme="light"] .price-table tbody tr:nth-child(even) { background: rgba(0,0,0,.02); }
[data-theme="light"] .faq-section { background: var(--bg-darker); }
[data-theme="light"] .faq-item { background: #fff; }
[data-theme="light"] .faq-answer p { color: #4A4036; }
[data-theme="light"] .status-pill { background: rgba(0,107,48,.12); color: #0a6b30; }
[data-theme="light"] .status-pill.is-closed { background: rgba(200,16,46,.10); color: var(--primary); }
[data-theme="light"] .tag-new { background: var(--accent); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .qf-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .qf-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid.two { grid-template-columns: 1fr; }
  .price-table { font-size: 14px; }
  .price-table th, .price-table td { padding: 13px 14px; }
  .faq-item summary { padding: 17px 46px 17px 18px; }
  .faq-item summary h3 { font-size: 1rem; }
}
@media (max-width: 460px) {
  .qf-grid { grid-template-columns: 1fr; }
}

/* Robustesse : le bouton d'appel ne doit jamais casser sur plusieurs lignes */
.btn-call { white-space: nowrap; flex-shrink: 0; }
.btn-call .ico, .ico { flex-shrink: 0; }

/* Correctifs d'affichage 2026-08-27 */
/* En theme clair, [data-theme="light"] .menu-tab l'emportait sur .menu-tab.active :
   l'onglet actif se retrouvait en texte blanc sur fond blanc. */
[data-theme="light"] .menu-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
/* .section-header .script porte une marge basse negative, calibree pour un h2.
   Sur un h3 plus petit, les lettres se chevauchaient. */
.section-header .h2-like { margin-top: 16px; }

/* Le titre cursif et la pastille de prix tenaient sur la meme ligne
   depuis que les prix sont plus courts : ils se touchaient. */
.menu-heading .script { display: block; }
/* Dans l'en-tete d'article, "Retour au blog" et la categorie etaient
   tous deux en inline et se retrouvaient colles sur une ligne. */
.article-hero .back-home { display: flex; width: fit-content; }

/* Les prix ne doivent jamais laisser le symbole euro seul en bout de ligne */
.menu-heading .sizes span, .qf-value, .price-table td { white-space: nowrap; }

/* Sur petit ecran, le tableau des prix tenait sur 520px et imposait un
   defilement horizontal. La colonne du supplement passe dans la note. */
@media (max-width: 560px) {
  .price-table { min-width: 0; font-size: 14px; }
  .price-table th:nth-child(4), .price-table td:nth-child(4) { display: none; }
  .price-table th, .price-table td { padding: 13px 10px; }
  .price-table tbody th { font-size: 16px; }
  .menu-heading .sizes { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
}
