/* ================= ABOUT PAGE ONLY (about.css) ================= */

/* Highlight active nav item on About page */
.nav-link.is-active{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
}

/* ===== About banner: image hero, HALF height, NO buttons ===== */
.hero--about{
  /* half-height banner */
  min-height:48vh;
  height:48vh;
}

/* desktop: slightly taller for better balance */
@media (min-width:1024px){
  .hero--about{
    min-height:52vh;
    height:52vh;
  }
}

/* mobile: keep compact */
@media (max-width:980px){
  .hero--about{
    min-height:42vh;
    height:42vh;
  }
}

/* Background image layer (set your image here) */
.hero--about .hero-media--image{
  position:absolute;
  inset:0;
  z-index:0;

  /* ✅ Replace with your banner image */
  background:url("../img/about-hero.jpg") center/cover no-repeat;

  /* Make it pop slightly */
  filter:saturate(1.05) contrast(1.05);
}

/* Overlay tuned for image readability */
.hero--about .hero-overlay{
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.76) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(0,0,0,.18) 100%
  );
}

/* Tighten content spacing since banner is shorter */
.hero--about .hero-content{
  padding-top:92px;
  padding-bottom:34px;
  max-width:760px;
}

/* About page main section background */
.about-page{
  background:#ffece4;
}

/* Layout for story + photo */
.about-page-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:26px;
  align-items:start;
}

/* Keep readable line length */
.about-page-copy .section-text{
  max-width:760px;
}

/* Values cards */
.about-values{
  margin:16px 0 18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.value-card{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:14px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.value-title{
  font-weight:900;
  margin-bottom:6px;
}

.value-text{
  font-weight:700;
  color:rgba(20,20,20,.72);
}

/* Restaurant image card */
.about-page-photo{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  background:#fff;
}

.about-page-photo img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.about-page-photo figcaption{
  padding:14px 16px;
  font-weight:800;
  color:rgba(20,20,20,.78);
  background:#fff;
}

/* Responsive adjustments */
@media (max-width:980px){
  .about-page-grid{
    grid-template-columns:1fr;
  }

  .about-values{
    grid-template-columns:1fr;
  }

  .about-page-photo img{
    height:320px;
  }

  .hero--about .hero-content{
    padding-top:74px;
  }
}

@media (max-width:560px){
  .hero--about{
    min-height:40vh;
    height:40vh;
  }

  .hero--about .hero-content{
    padding-top:66px;
    padding-bottom:26px;
  }
}