@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;
}

/* ===== 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;
}

/* Nav Links Styling */
.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;
}

/* Red Button Styling */
.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);
}

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

/* ===== CONTACT HERO ===== */
.contact-hero {
  padding: 160px 20px 80px;
  background: #fff1f1;
  text-align: center;
}
.hero-title {
  font-family: "Komika Axis", system-ui, sans-serif;
  font-size: clamp(32px, 6vw, 54px);
  color: #383838;
  margin-bottom: 10px;
}
.hero-lead {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== LOCATIONS GRID ===== */
.locations {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 16px;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
}

.location-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.05);
}
.location-name {
  font-family: "Komika Axis";
  color: #ff0000;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.location-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
}
.location-hours { font-size: 0.9rem; color: #666; }
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin: 15px 0;
  aspect-ratio: 16 / 9;
  border: 1px solid #eee;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.delivery-logos {
  display: flex;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 15px 0 0;
}
.delivery-logos img { height: 26px; opacity: 0.9; }

/* ===== EMAIL SECTION ===== */
.email-section { text-align: center; padding-bottom: 60px; }
.email-section a {
  color: #ff0000;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.email-section a:hover { border-bottom: 1px solid #ff0000; }

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