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

:root {
  --red:        #c8111a;
  --red-dark:   #8b0d12;
  --cream:      #fdf8f0;
  --warm-white: #fffef9;
  --charcoal:   #1a1a1a;
  --gray:       #5a5a5a;
  --gold:       #c9923a;
  --fb:         #1877f2;
  --radius:     8px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SKIP NAV (accessibilité)
═══════════════════════════════════════════ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: .875rem;
  text-decoration: none;
  z-index: 999;
}
.skip-nav:focus { top: 0; }

/* ═══════════════════════════════════════════
   NAVIGATION FIXE
═══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(26, 26, 26, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  outline: none;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35) 55%, rgba(0,0,0,.7)),
    var(--hero-bg, url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1600&q=80')) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  contain: layout;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero h1 span { color: var(--red); }

.hero p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  letter-spacing: .5px;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════ */
.btn {
  padding: .8rem 2rem;
  border-radius: 4px;
  font-size: .875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   PROMO BANNER
═══════════════════════════════════════════ */
.promo-banner {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: .9rem 2rem;
  text-align: center;
  font-size: .875rem;
}
.promo-banner strong {
  display: block;
  font-size: .95rem;
}

/* ═══════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
═══════════════════════════════════════════ */
main section { padding: 5rem 1.5rem; }

.section-label {
  display: block;
  text-align: center;
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  line-height: 1.2;
}
.section-title em {
  color: var(--red);
  font-style: normal;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 1rem auto 3rem;
  border: none;
}

/* ═══════════════════════════════════════════
   MENU — ONGLETS & GRILLE
═══════════════════════════════════════════ */
#menu { background: var(--warm-white); }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.tab {
  padding: .45rem 1.4rem;
  border-radius: 100px;
  border: 1px solid #d9d3c9;
  background: transparent;
  font-size: .875rem;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  color: var(--charcoal);
}
.tab:hover,
.tab.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.tab:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.menu-grid {
  display: grid;
  gap: 1px;
  max-width: 860px;
  margin: 0 auto;
  background: #e5dfd5;
  border-radius: var(--radius);
  overflow: hidden;
}

.menu-cat { display: none; }
.menu-cat.active { display: contents; }

.menu-item {
  background: var(--warm-white);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.4rem;
  transition: background var(--transition);
}
.menu-item:hover { background: #fdf5e6; }

.item-info { flex: 1; }
.item-name {
  font-weight: 500;
  font-size: .975rem;
  margin-bottom: .2rem;
}
.item-desc {
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.5;
}
.item-price {
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}

.item-badge-new {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: .45rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   ABOUT — 2 COLONNES
═══════════════════════════════════════════ */
#about {
  background: var(--charcoal);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.about-img {
  background: url('https://images.unsplash.com/photo-1571997478779-2adcbbe9ab2f?w=800&q=80') center/cover;
  min-height: 450px;
  will-change: transform;
}

.about-text {
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.about-text .section-label,
.about-text .section-title { text-align: left; }

.about-text p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
}

.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 1px;
  margin-top: .25rem;
}

/* ═══════════════════════════════════════════
   CONTACT — GRILLE DE CARTES
═══════════════════════════════════════════ */
#contact { background: var(--cream); }

.contact-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.contact-icon {
  font-size: 2rem;
  margin-bottom: .65rem;
  line-height: 1;
  color: var(--red);
}
.contact-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.contact-card p {
  color: var(--gray);
  font-size: .875rem;
  line-height: 1.7;
}
.contact-card a[href^="tel"] {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.contact-card a[href^="tel"]:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   MAP + FACEBOOK WIDGET
═══════════════════════════════════════════ */
.map-fb-wrap {
  max-width: 980px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.map-container {
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.map-container iframe { display: block; }

.fb-widget-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  background: #fff;
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .45);
  text-align: center;
  padding: 1.4rem;
  font-size: .78rem;
  letter-spacing: 1px;
}
footer strong { color: rgba(255, 255, 255, .8); }
footer a {
  color: var(--gold);
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }
footer .admin-link {
  opacity: .3;
  font-size: 1rem;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  #about {
    grid-template-columns: 1fr;
  }
  .about-img { min-height: 240px; }
  .about-text { padding: 2.5rem 1.5rem; }
  .nav-links { display: none; }
  .map-fb-wrap { grid-template-columns: 1fr; }
  .map-container { height: 250px; }
}
