/* =================================================================
   Breakfast Launch Page — Penang City Forest Gate
   Brand:  Green #83c523  ·  Navy #012640  ·  White #ffffff
   ================================================================= */

:root {
  --bk-green: #83c523;
  --bk-green-dark: #5a9a10;
  --bk-navy: #012640;
  --bk-navy-soft: #013a5c;
  --bk-cream: #fffaf0;
  --bk-text: #1a2935;
  --bk-muted: #5a6b7a;
}

/* Inherit body font (Poppins is already loaded site-wide via penang.css). */
.bk-page {
  color: var(--bk-text);
  background: #ffffff;
}

.bk-page h1,
.bk-page h2,
.bk-page h3,
.bk-page h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--bk-navy);
}

/* Push content below the fixed navbar. */
.bk-page main { padding-top: var(--navbar-height, 80px); }

/* =================================================================
   1. Hero
   ================================================================= */
.bk-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background-color: var(--bk-navy);
  background-image: url('/images/forest-gate/breakfast-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* The hero image has its own gradient + text baked in; only a slim
   bottom shadow is needed so the CTA buttons stay readable. */
.bk-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent 0%, rgba(1,38,64,0.85) 100%);
  pointer-events: none;
}

.bk-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 0 48px;
  max-width: 820px;
  width: 100%;
}

.bk-hero-eyebrow {
  display: inline-block;
  background: var(--bk-green);
  color: var(--bk-navy);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.bk-hero h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.85rem, 4.6vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.bk-hero h1 .bk-highlight {
  color: var(--bk-green);
}

.bk-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: #e8f5d6;
  margin-bottom: 32px;
}

.bk-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}

.bk-btn-primary {
  background: var(--bk-green);
  color: var(--bk-navy);
  box-shadow: 0 6px 20px rgba(131,197,35,0.35);
}

.bk-btn-primary:hover,
.bk-btn-primary:focus {
  background: var(--bk-green-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(131,197,35,0.5);
}

.bk-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.bk-btn-outline:hover,
.bk-btn-outline:focus {
  background: #ffffff;
  color: var(--bk-navy);
  transform: translateY(-2px);
}

/* Re-use on dark/light backgrounds */
.bk-btn-outline-dark {
  background: transparent;
  color: var(--bk-navy);
  border-color: var(--bk-navy);
}

.bk-btn-outline-dark:hover,
.bk-btn-outline-dark:focus {
  background: var(--bk-navy);
  color: #ffffff;
  transform: translateY(-2px);
}

/* =================================================================
   2. Offer band
   ================================================================= */
.bk-offer-band {
  background: var(--bk-green);
  color: var(--bk-navy);
  padding: 28px 0;
  text-align: center;
}

.bk-offer-band p {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  line-height: 1.4;
}

.bk-offer-fineprint {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  opacity: 0.85;
}

/* =================================================================
   3. Breakfast menu
   ================================================================= */
.bk-section {
  padding: 72px 0;
}

.bk-section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bk-navy);
  margin-bottom: 8px;
}

.bk-section h2 {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.bk-section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--bk-muted);
  font-size: 1.05rem;
}

.bk-menu-group-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bk-navy);
  text-align: center;
  margin: 24px 0 24px;
  position: relative;
}

.bk-menu-group-label::before,
.bk-menu-group-label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--bk-green);
  vertical-align: middle;
  margin: 0 14px;
}

.bk-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.bk-dish-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bk-dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(1,38,64,0.12);
  border-color: var(--bk-green);
}

.bk-dish-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f4f7f0 0%, #eaf5d4 100%);
  overflow: hidden;
}

.bk-dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bk-dish-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bk-dish-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}

.bk-dish-tag {
  display: inline-block;
  background: rgba(131,197,35,0.18);
  color: var(--bk-navy);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.bk-dish-desc {
  font-size: 0.9375rem;
  color: var(--bk-muted);
  margin: 0 0 12px;
  line-height: 1.55;
  flex: 1;
}

.bk-dish-allergens {
  font-size: 0.75rem;
  color: var(--bk-muted);
  margin: 0 0 14px;
  font-style: italic;
}

.bk-dish-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.bk-price-was {
  color: #98a4ad;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.bk-price-now {
  color: var(--bk-green-dark);
  font-weight: 800;
  font-size: 1.4rem;
}

.bk-price-save {
  font-size: 0.75rem;
  color: var(--bk-navy);
  background: rgba(131,197,35,0.18);
  border: 1px solid rgba(131,197,35,0.45);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* =================================================================
   4. Gallery
   ================================================================= */
.bk-section-alt {
  background: #f8faf3;
}

.bk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.bk-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #eef3e2 0%, #d6e8b0 100%);
}

.bk-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bk-gallery-item:hover img {
  transform: scale(1.05);
}

/* Make first item span 2 columns + 2 rows on larger screens for visual variety —
   only when we have at least 5 gallery items, otherwise the empty cells look bad. */
@media (min-width: 768px) {
  .bk-gallery-grid:has(.bk-gallery-item:nth-child(5)) > .bk-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* =================================================================
   5. NAP block
   ================================================================= */
.bk-nap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .bk-nap-grid { grid-template-columns: 1fr 1fr; }
}

.bk-nap address {
  font-style: normal;
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-left: 4px solid var(--bk-green);
  border-radius: 10px;
  padding: 26px 28px;
  font-size: 1rem;
  line-height: 1.7;
}

.bk-nap address h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.bk-nap-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.bk-nap-row i {
  color: var(--bk-green-dark);
  margin-top: 4px;
  width: 20px;
  text-align: center;
}

.bk-nap-row a {
  color: var(--bk-navy);
  text-decoration: none;
  font-weight: 600;
}

.bk-nap-row a:hover,
.bk-nap-row a:focus-visible {
  color: var(--bk-navy);
  text-decoration: underline;
  text-decoration-color: var(--bk-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.bk-nap-cta {
  margin-top: 18px;
}

/* =================================================================
   6. Map
   ================================================================= */
.bk-map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 6px 22px rgba(1,38,64,0.10);
}

/* =================================================================
   7. Trust signals
   ================================================================= */
.bk-trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center;
}

@media (min-width: 576px) {
  .bk-trust-row { grid-template-columns: repeat(3, 1fr); }
}

.bk-trust-item {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bk-trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(1,38,64,0.08);
}

.bk-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bk-green) 0%, var(--bk-green-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(131,197,35,0.4);
}

.bk-trust-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bk-navy);
  margin: 0;
}

.bk-trust-desc {
  font-size: 0.875rem;
  color: var(--bk-muted);
  margin: 0;
  line-height: 1.45;
}

/* =================================================================
   8. FAQ
   ================================================================= */
.bk-faq {
  max-width: 820px;
  margin: 0 auto;
}

.bk-faq-item {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bk-faq-item[open] {
  border-color: var(--bk-green);
  box-shadow: 0 4px 14px rgba(1,38,64,0.06);
}

.bk-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.075rem;
  color: var(--bk-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.bk-faq-item summary::-webkit-details-marker { display: none; }

.bk-faq-item summary::after {
  content: '\f078'; /* fa-chevron-down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--bk-green-dark);
  font-size: 0.875rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.bk-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.bk-faq-item summary:focus-visible {
  outline: 2px solid var(--bk-green-dark);
  outline-offset: -2px;
}

.bk-faq-body {
  padding: 0 22px 22px;
  color: var(--bk-text);
  font-size: 0.975rem;
  line-height: 1.65;
}

.bk-faq-body p { margin: 0 0 10px; }
.bk-faq-body p:last-child { margin: 0; }

/* =================================================================
   9. Local area
   ================================================================= */
.bk-local-area {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.bk-local-area p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bk-text);
  margin-bottom: 18px;
}

.bk-local-postcodes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.bk-postcode-chip {
  display: inline-block;
  background: rgba(131,197,35,0.12);
  border: 1px solid rgba(131,197,35,0.35);
  color: var(--bk-navy);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 5px 12px;
  border-radius: 50px;
}

/* =================================================================
   10. Final CTA band
   ================================================================= */
.bk-final-cta {
  background: linear-gradient(135deg, var(--bk-navy) 0%, var(--bk-navy-soft) 100%);
  color: #ffffff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bk-final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--bk-green), #a8e040, var(--bk-green), transparent);
}

.bk-final-cta h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.bk-final-cta p {
  font-size: 1.05rem;
  color: #d3e7f0;
  margin: 0 auto 32px;
  max-width: 640px;
}

.bk-final-cta .bk-cta-row {
  justify-content: center;
}

/* =================================================================
   Responsive tweaks
   ================================================================= */
/* Use a portrait-cropped hero on narrow viewports — the wide hero's text
   panel sits to the left of the image and gets cropped on phones, so we
   swap to a vertically stacked variant designed for portrait displays.
   The container takes the image's 3:4 aspect ratio so nothing crops. */
@media (max-width: 768px) {
  .bk-hero {
    background-image: url('/images/forest-gate/breakfast-hero-mobile.jpg');
    background-position: top center;
    background-size: contain;
    background-color: var(--bk-navy);
    min-height: 0;
    aspect-ratio: 3 / 4;
  }
  /* The mobile image already has its own bottom shadow built in, so we
     don't need the desktop ::after fade band. */
  .bk-hero::after { display: none; }
}

@media (max-width: 575.98px) {
  .bk-section { padding: 56px 0; }
  .bk-hero-inner { padding: 0 0 24px; }
  .bk-btn { padding: 12px 20px; font-size: 0.9375rem; width: 100%; justify-content: center; }
  .bk-cta-row { width: 100%; }
  .bk-menu-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bk-dish-card, .bk-trust-item, .bk-btn, .bk-gallery-item img, .bk-faq-item summary::after {
    transition: none;
  }
  .bk-dish-card:hover, .bk-trust-item:hover, .bk-btn:hover { transform: none; }
}

/* The sitewide announcement banner has its own scoped styles inside
   breakfast-announce.php — it loads on every page where the include
   runs, so its CSS travels with it instead of living in this file. */
