/* ═══════════════════════════════════════════
   MBOA EATS — Landing Page Theme
   ═══════════════════════════════════════════ */

/* — Reset & Base — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #0F2D1F;
  --green-mid:    #1A3A2A;
  --green-light:  #2D5A3D;
  --terracotta:   #C4622D;
  --terracotta-light: #E88A5A;
  --cream:        #F5EDE0;
  --cream-dark:   #E8D5B7;
  --charcoal:     #2D2D2D;
  --muted:        #7A7A6E;
  --white:        #FFFFFF;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — Typography — */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

/* ══════════════════════════════
   NAV
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 45, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.nav-tagline {
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.55);
  font-style: italic;
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 58, 42, 0.35) 0%, transparent 55%),
    linear-gradient(160deg, #0F2D1F 0%, #1A3A2A 45%, #2D5A3D 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-light);
}

.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(245, 237, 224, 0.72);
  max-width: 480px;
  line-height: 1.7;
}

/* Hero visual — stacked dish cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 2rem;
}

.dish-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(245, 237, 224, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  transition: transform 0.3s ease;
}

.dish-card:hover { transform: translateX(8px); }

.dish-color {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
}

.ndole    { background: linear-gradient(135deg, #8B6914, #C4622D); }
.poisson  { background: linear-gradient(135deg, #0A6E8C, #1A8FA8); }
.fufu     { background: linear-gradient(135deg, #1A3A2A, #2D7A4A); }

.dish-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  flex: 1;
}

.dish-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta-light);
}

/* ══════════════════════════════
   SPOTS (Restaurants)
   ══════════════════════════════ */
.spots {
  padding: 7rem 2rem;
  background: var(--cream);
}

.spots-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.spots-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.spots-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.spots-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.spot-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(15, 45, 31, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.spot-card:hover {
  box-shadow: 0 8px 40px rgba(15, 45, 31, 0.12);
  transform: translateY(-4px);
}

.spot-img {
  height: 160px;
  width: 100%;
}

.spot-body {
  padding: 1.25rem 1.4rem;
}

.spot-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2D7A4A;
  background: rgba(45, 122, 74, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.6rem;
}

.spot-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.spot-cuisine {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.spot-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spot-rating {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta);
}

.spot-type {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--cream);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}

/* ══════════════════════════════
   COMMUNAUTES
   ══════════════════════════════ */
.communautes {
  padding: 7rem 2rem;
  background: var(--green-deep);
}

.communautes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.communautes-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.communautes-desc {
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.communaute-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.communaute-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(245, 237, 224, 0.06);
  border: 1px solid rgba(245, 237, 224, 0.1);
  border-radius: 14px;
}

.communaute-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.communaute-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.communaute-info p {
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.5);
}

/* Community rings visual */
.communautes-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 224, 0.15);
}

.cv-ring-1 { width: 280px; height: 280px; }
.cv-ring-2 { width: 200px; height: 200px; border-color: rgba(196, 98, 45, 0.3); }
.cv-ring-3 { width: 130px; height: 130px; border-color: rgba(245, 237, 224, 0.25); }

.cv-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cv-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.cv-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(245, 237, 224, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ══════════════════════════════
   PROMOS
   ══════════════════════════════ */
.promos {
  padding: 7rem 2rem;
  background: var(--cream-dark);
}

.promos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.promos-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--green-deep);
  max-width: 580px;
  margin-bottom: 3rem;
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.promo-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 2px 16px rgba(15, 45, 31, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(15, 45, 31, 0.1);
}

.promo-hot {
  background: var(--green-deep);
}

.promo-fire {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.promo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.promo-hot .promo-name { color: var(--cream); }

.promo-restaurant {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.promo-hot .promo-restaurant { color: rgba(245, 237, 224, 0.5); }

.promo-deal {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.promo-off {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--terracotta);
}

.promo-hot .promo-off { color: var(--terracotta-light); }

.promo-code {
  font-size: 0.72rem;
  color: var(--muted);
}

.promo-hot .promo-code { color: rgba(245, 237, 224, 0.4); }

.promo-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--green-mid);
  border-radius: 18px;
  padding: 2rem 1.5rem;
}

.promo-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.promo-stat-label {
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.6);
  margin-top: 0.4rem;
}

.promo-stat-note {
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.4);
  margin-top: 1.2rem;
  line-height: 1.5;
}

/* ══════════════════════════════
   CLOSING
   ══════════════════════════════ */
.closing {
  padding: 7rem 2rem;
  background: var(--cream);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}

/* Plate visual */
.closing-plate {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--green-mid);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(15, 45, 31, 0.2);
}

.plate-portion {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 16px;
}

.p1 { top: 20px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #8B6914, #C4622D); }
.p2 { top: 50%; right: 20px; transform: translateY(-50%); background: linear-gradient(135deg, #0A6E8C, #1A8FA8); }
.p3 { bottom: 20px; right: 60px; background: linear-gradient(135deg, #1A3A2A, #2D7A4A); }
.p4 { bottom: 20px; left: 60px; background: linear-gradient(135deg, #C4622D, #E88A5A); }
.p5 { top: 50%; left: 20px; transform: translateY(-50%); background: linear-gradient(135deg, #F5EDE0, #E8D5B7); }

.closing-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.closing-headline {
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  color: var(--green-deep);
  line-height: 1.2;
}

.closing-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: var(--green-deep);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 237, 224, 0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.45);
  line-height: 1.6;
  max-width: 240px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.55);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.3);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { padding-left: 0; }
  .communautes-inner { grid-template-columns: 1fr; gap: 3rem; }
  .closing-inner { grid-template-columns: 1fr; gap: 3rem; }
  .closing-plate { margin: 0 auto; }
  .promos-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2rem; }
  .spots-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
}