/* ==========================================================
   BUMBU BABAH — LANDING PAGE
   Design tokens
   ========================================================== */
:root{
  /* colour */
  --red-deep:     #650C0F;
  --red-mid:      #9A1F1F;
  --red-bright:   #C22B2B;
  --cream:        #EFE1C2;
  --cream-light:  #FBF5E7;
  --ink:          #2B1810;
  --gold:         #C9A227;
  --gold-light:   #E4C860;
  --whatsapp:     #25D366;
  --white:        #FFFFFF;

  /* type */
  --font-display: "Fraunces", serif;
  --font-body:    "Manrope", sans-serif;

  /* layout */
  --max-width: 1080px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 10px 30px rgba(43,24,16,0.15);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ text-decoration: none; }

ul{ margin: 0; padding: 0; list-style: none; }

.placeholder-label{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43,24,16,0.45);
  text-align: center;
  padding: 0 1rem;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 2em;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn:focus-visible{
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.btn--primary{
  background: var(--cream);
  color: var(--red-deep);
  box-shadow: var(--shadow-card);
}
.btn--primary:hover{ background: var(--white); }

.btn--gold{
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--red-deep);
  box-shadow: 0 10px 24px rgba(201,162,39,0.4);
}

.btn--outline{
  background: transparent;
  color: var(--cream-light);
  border-color: var(--cream-light);
}
.btn--outline:hover{ background: var(--red-deep); color: var(--cream-light); }

.btn--whatsapp{
  background: var(--whatsapp);
  color: var(--white);
}

/* ==========================================================
   SECTION SHELL
   ========================================================== */
.section{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section__eyebrow{
  margin: 0 0 0.4rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-mid);
  text-align: center;
}

.section__title{
  margin: 0 0 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  color: var(--ink);
}

/* ==========================================================
   1. HERO
   ========================================================== */
.hero{
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--cream-light);
}

.hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center / cover no-repeat;
  filter: saturate(1.5) contrast(1.3);
}

.hero__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgb(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.hero__content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin-right: 45vw;
}

.brand-badge{
  background: rgba(101,12,15,0.35);
  padding: 1.2rem 2rem;
  border: 1px solid rgba(228,200,96,0.4);
  border-radius: var(--radius-md);
  box-shadow: none;
  margin: 0 0 2rem;
  display: block;
  width: fit-content;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);   /* Safari support */
}

.brand-badge__logo{
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.brand-badge__name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.brand-badge__name em{ font-style: normal; color: var(--red-mid); }
.brand-badge__tagline{
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(43,24,16,0.7);
}

.hero__eyebrow{
  margin: 0 0 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.hero__title{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: 1.05;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.hero__title span{ color: var(--gold-light); }

.hero__sub{
  margin: 1.1rem 0 2.2rem;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(251,245,231,0.85);
}

/* ==========================================================
   2. HERO MENU
   ========================================================== */
.dish-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.75rem;
}

.dish-card{ text-align: center; }

.dish-card__photo{
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--cream);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  max-width: 220px;
}

.dish-card__name{
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.dish-card__price{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.dish-card__price-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  width: fit-content;
  margin: 0 auto;
}

.dish-card__price-label{
  font-weight: 700;
  color: rgba(43,24,16,0.55);
  text-align: right;
}

.dish-card__price-value{
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

.dish-card__price-row--member{
  background: var(--red-deep);
  color: var(--cream-light);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-pill);
}

.dish-card__price-row--member .dish-card__price-label,
.dish-card__price-row--member .dish-card__price-value{
  color: var(--cream-light);
}

/* ==========================================================
   3. LUNCH PRIVILEGE
   ========================================================== */
.privilege{ padding: 0 1.5rem 4.5rem; }

.privilege__card{
  max-width: var(--max-width);
  margin: 0 auto;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.08), transparent 45%),
    linear-gradient(160deg, var(--red-bright), var(--red-deep));
  color: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.privilege__eyebrow{
  margin: 0 0 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.privilege__title{
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.3;
}

.privilege__offer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  background: var(--cream);
  color: var(--red-deep);
  width: fit-content;
  margin: 0 auto 1.8rem;
  padding: 1.1rem 2.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.privilege__offer-label{
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.privilege__offer-value{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.1;
}

.privilege__terms{
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(251,245,231,0.9);
}
.privilege__terms li::before{
  content: "✓ ";
  color: var(--gold-light);
  font-weight: 800;
}

/* ==========================================================
   4. REVIEWS
   ========================================================== */
.review-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.review-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold);
}

.review-card__stars{
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.1em;
}

.review-card__text{
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}

.review-card__name{
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red-mid);
}

/* ==========================================================
   5. MENU CTA
   ========================================================== */
.menu-cta{
  text-align: center;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.08), transparent 45%),
    linear-gradient(160deg, var(--red-bright), var(--red-deep));
  color: var(--cream-light);
  border-radius: var(--radius-lg);
  max-width: calc(var(--max-width) - 3rem);
  margin: 0 auto 4rem;
  padding: 3.5rem 2rem;
}

.menu-cta__title{
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
}

/* ==========================================================
   6. LOCATION
   ========================================================== */
.location__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.location__map-embed{
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.location__details{
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}

.location__row{
  display: flex;
  gap: 0.75rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.location__icon{ flex-shrink: 0; }

/* ==========================================================
   7. CONTACT
   ========================================================== */
.contact{
  text-align: center;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.08), transparent 45%),
    linear-gradient(160deg, var(--red-bright), var(--red-deep));
  color: var(--cream-light);
  border-radius: var(--radius-lg);
  max-width: calc(var(--max-width) - 3rem);
  margin: 0 auto 4rem;
  padding: 3.5rem 2rem;
}

.contact__title{
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
}

.contact__actions{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer{
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem 1.5rem 6rem;
  font-size: 0.85rem;
  color: rgba(251,245,231,0.85);
}

.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/hero.jpg') bottom / cover no-repeat;
  filter: saturate(1.3) contrast(1.1);
}

.site-footer::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(20,15,12,0.55), rgba(20,15,12,0.65));
}

.site-footer p{
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ==========================================================
   STICKY MOBILE CTA
   ========================================================== */
.sticky-cta{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
}

.sticky-cta__btn{
  flex: 1;
  text-align: center;
  padding: 0.85em 1em;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--red-deep);
}

.sticky-cta__btn--accent{
  background: var(--whatsapp);
  color: var(--white);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 720px){
  .hero__content{ 
    margin-right: 0; 
  }
  .location__grid{
    grid-template-columns: 1fr;
  }
  .location__details{
    align-items: center;
    text-align: center;
  }
  .location__details .btn{ align-self: center; }
}

@media (min-width: 721px){
  .sticky-cta{ display: none; } /* desktop: rely on in-page CTAs */
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn{ transition: none; }
}
