@font-face {
  font-family: "Komika Axis";
  src: url("../assets/komika.ttf") format("truetype");
}

/* ===== GLOBAL FIX FOR SHIFTING ===== */
html {
  overflow-y: scroll;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.site-nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.nav-surface {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  pointer-events: auto;
}

.navbar-nav { gap: 1.5rem; }
.nav-link {
  color: #383838 !important;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover { color: #ff0000 !important; }
.nav-link.active {
  border-bottom: 2px solid #ff0000;
  padding-bottom: 0.35rem;
  color: #383838 !important;
}

.btn-reserve {
  background: #ff0000;
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  transition: all 0.2s ease-in-out;
}
.btn-reserve:hover {
  background: #cc0000;
  transform: translateY(-1px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .site-nav { top: 8px; }
  .nav-surface { width: min(100%, calc(100% - 16px)); }
}

/* ===== CATERING HERO ===== */
.catering-hero {
  background: #fdf2f5;
  padding: 160px 20px 80px;
}
.catering-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ff0000;
  font-weight: 600;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
}
.hero-title {
  font-family: "Komika Axis", system-ui, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #222;
}
.hero-lead { color: #4a4a4a; line-height: 1.6; max-width: 540px; margin-bottom: 1.5rem; }
.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .catering-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin: 0 auto 1.5rem; }
  .hero-image { margin-top: 30px; }
  .hero-image img { margin: 0 auto; }
}

/* ===== FORM CONTAINER ===== */
.section-title {
  text-align: center;
  font-family: "Komika Axis", system-ui, sans-serif;
  color: #ff0000;
  margin-bottom: 10px;
}
.form-container {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  margin-bottom: 50px;
}

/* ===== FOOTER ===== */
footer { padding: 15px 0 10px; border-top: 1px solid #eee; background: #fff; }
footer .list-inline { display: flex; justify-content: center; gap: 15px; padding: 0; margin-bottom: 8px; }
footer img { width: 25px; height: 25px; }
.footer-text { font-size: 12px; text-align: center; color: #888; margin: 0; }