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

/* ===== GLOBAL ===== */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #fff;
}

@media (max-width: 768px) {
  html, body { background-attachment: scroll; }
}

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

.nav-surface {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  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;
}

.site-nav.is-stuck { padding-top: 0; }
.site-nav.is-stuck .nav-surface {
  width: min(980px, calc(100% - 28px));
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

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

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

/* Red pill button */
.site-nav .btn-reserve,
.navbar .btn-reserve {
  background: #ff0000;
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.navbar .btn-reserve:hover {
  background: #cc0000;
  transform: translateY(-1px);
}
.navbar .btn-reserve + .btn-reserve { margin-left: 10px; }

/* Mobile toggler visibility on translucent bg */
.navbar-light .navbar-toggler { border-color: rgba(0, 0, 0, 0.15); }
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== HERO ===== */
.hero-wrapper {
  position: relative;
  z-index: 0;
}

.hero-bg {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(24px, 6vw, 64px) 20px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr;
}

.hero-card {
  max-width: 640px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 16px;
  padding: clamp(20px, 4.5vw, 40px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

@media (max-width: 768px) {
  .hero-card { margin-top: 60px; }
}

.hero-pill {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}

.hero-title {
  font-family: "Komika Axis", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(36px, 6vw, 64px);
  margin: 0.2rem 0 1rem;
  color: #fff;
}

.hero-lead {
  color: #e8e8e8;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-actions .btn-order {
  background: #ff0000;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  margin-right: 12px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.hero-actions .btn-order:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}
.hero-actions .link-menu {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}
.hero-actions .link-menu:hover { opacity: 0.85; }

@media (min-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr 1.2fr;
    column-gap: 42px;
  }
  .hero-card { grid-column: 1; }
}

/* ===== CONTENT WRAPPER ===== */
.content {
  background: #fff;
  padding: 30px 0;
}

/* ===== STEPS ===== */
.steps {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 16px;
}

.steps-title {
  text-align: center;
  font-family: "Komika Axis", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 28px);
  letter-spacing: 0.02em;
  margin: 6px 0 22px;
  color: #ff0000;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 992px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}
.step-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.step-media img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease;
}
.step-card:hover .step-media img { transform: scale(1.04); }
.step-caption {
  padding: 14px 16px 16px;
  text-align: center;
  font-weight: 600;
  color: #383838;
}

/* ===== LOCATIONS ===== */
.locations {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 16px;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@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.10);
  padding: 18px 18px 14px;
  border: 1px solid rgba(0,0,0,0.06);
}
.location-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.location-name {
  font-family: "Komika Axis", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(18px, 2.8vw, 22px);
  color: #ff0000;
  letter-spacing: 0.02em;
  margin: 0;
}
.location-hours { font-size: 0.95rem; color: #555; white-space: nowrap; }
.location-body { margin-top: 6px; margin-bottom: 14px; }
.location-body a.link { text-decoration: none; color: #222; }
.location-body p { margin: 2px 0; }

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  margin: 8px 0 12px;
  aspect-ratio: 16 / 9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Delivery badges */
.delivery-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 0;
  margin: 6px 0 0;
}
.delivery-logos li { list-style: none; }
.delivery-logos img {
  display: block;
  height: 26px;
  width: auto;
  filter: grayscale(0.2) saturate(0.9);
  opacity: 0.9;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.delivery-logos img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

/* Subheader spacing */
.subheader { margin-top: 40px; margin-bottom: 12px; }

/* ===== BACKGROUND SLIDER ===== */
.hero-wrapper .bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg > *:not(.bg-slides):not(.bg-arrow):not(.bg-dots) {
  position: relative;
  z-index: 1;
}
.bg-slides { position: absolute; inset: 0; z-index: 0; }
.bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.bg-slide.is-active { opacity: 1; }

.bg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, background .15s ease;
}
.bg-arrow:hover { transform: translateY(-50%) scale(1.04); }
.bg-arrow:active { transform: translateY(-50%) scale(0.98); }
.bg-arrow--prev { left: 14px; }
.bg-arrow--next { right: 14px; }

.bg-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.bg-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  cursor: pointer;
  padding: 0;
}
.bg-dot[aria-selected="true"] { background: #ff0000; }

@media (max-width: 768px) {
  .bg-slide { background-attachment: scroll; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-slide { transition: none; }
}

/* ===== TYPO / ACCENTS ===== */
h6 { color: #ff0000; }
.red-word { color: #ff0000; }

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