/* ============================================================
   Home page specific styles
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0 110px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,6,8,0.82) 45%, rgba(30,6,8,0.35));
}
.hero-inner { position: relative; z-index: 2; padding-bottom: 40px; max-width: 640px; }
.hero-welcome {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.hero-sub { color: #f0e2c8; font-size: 1.15rem; margin-top: 14px; }
.hero-divider { width: 90px; height: 3px; background: var(--gold); margin: 16px 0 26px; border-radius: 3px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.info-strip { margin-top: -60px; }

/* ---------- Services ---------- */
.services-section { padding: 90px 0 70px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 32px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service-icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--maroon); color: var(--gold-light); }
.service-card h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--ink); }

/* ---------- Menu band ---------- */
.menu-band {
  position: relative;
  background: var(--maroon-dark);
  padding: 80px 0;
  overflow: hidden;
}
.menu-band-img {
  position: absolute;
  bottom: 0;
  width: 260px; height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(224,168,62,0.5);
  opacity: 0.9;
}
.menu-band-img.left { left: -40px; }
.menu-band-img.right { right: -40px; }
.menu-band .section-tag.light { color: var(--gold-light); }
.menu-band .section-title.light { color: #fff; }
.menu-band .section-divider { margin: 10px auto 30px; }
.menu-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.pill {
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  color: #f0e2c8;
  font-weight: 500;
  font-size: 0.88rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pill:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.pill.gold { background: var(--gold); color: var(--maroon-dark); font-weight: 600; }
.pill.gold:hover { background: var(--gold-light); }

/* ---------- About + gallery ---------- */
.about-gallery { padding: 90px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-col p { color: var(--text-muted); margin-top: 4px; }
.about-img { margin-top: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; height: 260px; object-fit: cover; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 26px; }
.gallery-grid img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); transition: transform 0.3s ease; }
.gallery-grid img:hover { transform: scale(1.04); }

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .menu-band-img { width: 160px; height: 160px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 0 90px; }
  .menu-band-img { display: none; }
}
