/* ======================= catering.css (FULL FILE) ======================= */

/* Active nav highlight */
.nav-link.is-active{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
}

/* ===== HERO (half height image banner) ===== */
.hero--catering{
  min-height:48vh;
  height:48vh;
}
@media (min-width:1024px){
  .hero--catering{min-height:52vh;height:52vh;}
}
@media (max-width:980px){
  .hero--catering{min-height:42vh;height:42vh;}
}
@media (max-width:560px){
  .hero--catering{min-height:40vh;height:40vh;}
}

.hero-media--catering{
  position:absolute;
  inset:0;
  z-index:0;
  /* Replace image */
  background:url("../img/catering-hero.jpg") center/cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
}

.hero--catering .hero-overlay{
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.76) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(0,0,0,.18) 100%
  );
}

.hero-content--catering{
  padding-top:90px;
  padding-bottom:34px;
  max-width:760px;
}
@media (max-width:980px){ .hero-content--catering{ padding-top:74px; } }
@media (max-width:560px){ .hero-content--catering{ padding-top:66px; padding-bottom:26px; } }

/* ===== PAGE ===== */
.catering-page{
  background:#ffece4;
}

/* Grid layout */
.catering-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}

/* Copy card */
.catering-copy{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:26px;
  padding:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Bullets */
.catering-bullets{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.bullet{
  background:rgba(231,29,54,.08);
  border:1px solid rgba(231,29,54,.14);
  border-radius:16px;
  padding:10px 12px;
  font-weight:800;
  color:rgba(20,20,20,.88);
}

/* Buttons */
.catering-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}
.catering-note{
  margin-top:14px;
  color:rgba(20,20,20,.70);
  font-weight:700;
}

/* Photo */
.catering-photo{
  margin:0;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}
.catering-photo img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

/* Responsive */
@media (max-width:980px){
  .catering-grid{
    grid-template-columns:1fr;
  }
  .catering-photo img{
    height:360px;
  }
}
@media (max-width:560px){
  .catering-actions .btn{
    width:100%;
  }
}