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

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

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

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

/* ===== HERO SECTION ===== */
.about-hero {
  background: #ffe3e3;
  padding: 160px 20px 80px;
}
.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ff0000;
  font-weight: 600;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
}
.about-text h1 {
  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;
}
.about-text .lead { color: #4a4a4a; line-height: 1.6; max-width: 540px; }
.about-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

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

/* ===== MAIN CONTENT ===== */
main { padding: 40px 0 20px; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; margin-bottom: 60px; }
.two-col__image img { width: 100%; border-radius: 18px; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1); }
.two-col__text h2 { font-family: "Komika Axis"; color: #ff0000; margin-bottom: 0.8rem; }
.two-col__text p { color: #444; line-height: 1.7; }

@media (max-width: 992px) { .two-col { grid-template-columns: 1fr; } }

.about-section { padding: 60px 16px; }
.about-section.soft-bg { background: #fff6f6; }
.section-title { text-align: center; font-family: "Komika Axis"; color: #ff0000; margin-bottom: 10px; }
.section-sub { text-align: center; color: #555; max-width: 620px; margin: 0 auto 30px; }

/* Values & Locations */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.value-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); }
.value-card h3 { font-weight: 700; margin-bottom: 8px; color: #222; }

.locations-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.location-pill { background: #fff; border-radius: 14px; padding: 15px 25px; min-width: 240px; text-align: center; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04); }

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