/* =========================
   ZABIHA EXPRESS NAVBAR CSS
   (Drop-in replacement)
   ========================= */


/* ===== HERO SECTION CSS ===== */
/* Assumes your :root palette already exists from navbar */
:root{
  --green: #1f3a2e;
  --green-dark: #16291f;
  --text: #111827;
  --muted: rgba(17,24,39,.70);
  --border: rgba(17,24,39,.10);
  --bg: #ffffff;
  --soft: #F8FAF9;
}

.hero{
  background: var(--bg);
  padding: 56px 18px 38px;
}

.hero_inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}

.hero_title{
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 900;
}

.hero_text{
  margin: 0 0 22px;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero_text strong{
  color: rgba(17,24,39,.92);
  font-weight: 800;
}

.hero_actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn--primary{
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(31,58,46,.18);
}

.btn--primary:hover{
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn--secondary{
  background: rgba(31,58,46,.06);
  color: var(--green);
  border: 1px solid rgba(31,58,46,.18);
}

.btn--secondary:hover{
  transform: translateY(-1px);
  border-color: rgba(31,58,46,.28);
}

/* Chips */
.hero_chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
  font-weight: 750;
  color: rgba(17,24,39,.82);
  font-size: 13px;
}

/* Image card */
.hero_media{
  display: flex;
  justify-content: center;
}

.hero_img{
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  background: #eef2f1;
  box-shadow: 0 28px 60px rgba(17,24,39,.16);
  border: 1px solid rgba(17,24,39,.08);
}

/* Responsive */
@media (max-width: 950px){
  .hero_inner{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero_text{
    max-width: 620px;
  }
  .hero_media{
    order: -1; /* image first on mobile if you want */
  }
  .hero{
    padding-top: 34px;
  }
}

/* ===== HERO FONT OVERRIDE ===== */

.hero_title{
  letter-spacing: -0.035em;
  font-weight: 900;
}



/* ===== OUR COMMITMENT SECTION CSS ===== */
.commitment{
  padding: 64px 18px;
  background: #F7F8F7;
  box-shadow:
    inset 0 1px 0 rgba(17,24,39,0.04),
    inset 0 -1px 0 rgba(17,24,39,0.04);
}


.commitment_inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.commitment_pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.12); /* soft gold tint */
  border: 1px solid rgba(201, 162, 77, 0.22);
  color: rgba(17, 24, 39, 0.85);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

.commitment_pillIcon{
  font-size: 16px;
  line-height: 1;
}

.commitment_title{
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text, #111827);
  font-weight: 900;
}

.commitment_text{
  margin: 0 auto 26px;
  max-width: 760px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.commitment_text strong{
  color: rgba(17, 24, 39, 0.92);
  font-weight: 900;
}

.commitment_points{
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.commitment_point{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.85);
}

.commitment_check{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f3a2e; /* olive green */
  border: 1px solid rgba(31, 58, 46, 0.25);
  background: rgba(31, 58, 46, 0.08);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px){
  .commitment{
    padding: 48px 16px;
  }
  .commitment_points{
    gap: 14px;
  }
  .commitment_point{
    width: 100%;
    justify-content: center;
  }
}

/* ===== SECTION SYSTEM (reusable) ===== */
.section{
  padding: 56px 18px;
  background: #fff;
}

.section--tint{
  background: #F7F8F7; /* subtle gray like you wanted */
  box-shadow:
    inset 0 1px 0 rgba(17,24,39,0.04),
    inset 0 -1px 0 rgba(17,24,39,0.04);
}

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

/* Heading row */
.section_head{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 26px;
}


.section_title{
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--text, #111827);
  font-weight: 900;
}

.section_sub{
  margin: 0;
  color: rgba(17,24,39,0.70);
  font-weight: 600;
  line-height: 1.6;
}

/* Buttons (match your palette) */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 14.5px;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn--primary{
  background: var(--green, #1f3a2e);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31,58,46,.18);
}

.btn--primary:hover{
  background: var(--green-dark, #16291f);
  transform: translateY(-1px);
}

/* Grids */
.grid{
  display: grid;
  gap: 16px;
}

.grid--3{
  grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card{
  background: #fff;
  border: 1px solid rgba(17,24,39,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(17,24,39,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(17,24,39,0.10);
}

.card_body{
  padding: 14px 14px 16px;
}

.card_title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(17,24,39,0.92);
  letter-spacing: -0.01em;
}

.card_text{
  margin: 0;
  color: rgba(17,24,39,0.68);
  line-height: 1.6;
  font-weight: 600;
}

/* Menu image placeholder (swap for real photos later) */
.placeholder-img{
  height: 170px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31,58,46,.12), rgba(201,162,77,.10));
  color: rgba(17,24,39,.55);
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* Event cards */
.card--event{
  padding: 16px;
}

.card--event .card_title{
  margin-top: 10px;
}

.event_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.event_date{
  font-weight: 900;
  color: rgba(17,24,39,0.82);
  font-size: 13px;
}

.event_tag{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green, #1f3a2e);
  background: rgba(31,58,46,.08);
  border: 1px solid rgba(31,58,46,.18);
}

/* Responsive */
@media (max-width: 950px){
  .section_head{
    align-items: center;
    text-align: center;
  }
  .grid--3{
    grid-template-columns: 1fr;
  }
  .placeholder-img{
    height: 190px;
  }
}
