/* ===== Base Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

/* ===== Shared Background Layer ===== */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the whole screen */
  object-position: center center; /* adjust focal point if needed */
  filter: none; /* no fade/darkening */
}

/* Landing page focal point */
body.landing .bg img {
  object-position: 50% 8%;
}

/* Menu page focal point */
body.menu-page .bg img {
  object-position: 50% 18%;
}

/* ===== Overlay ===== */
.overlay {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: env(safe-area-inset-top) 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Buttons ===== */
.top-buttons,
.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}

/* Rose pink (menu button) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  background: #d16b86; /* rose */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1rem; /* slightly larger for elegance */
  letter-spacing: 0.5px;
}

.btn:hover {
  background: #b85e76;
}
.btn:active {
  background: #9d4f64;
}

/* Muted gold (external site button) */
.btn-gold {
  background: #caa56a;
  border: 2px solid #caa56a;
  color: #fff;
}

.btn-gold:hover {
  background: #b8925e;
}
.btn-gold:active {
  background: #9f7b4c;
}

/* ===== Menu Page Cards ===== */
.menu-wrap {
  max-width: 720px;
  width: 100%;
  margin-top: 4rem;
}

.menu-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 1rem;
  margin: 0 0 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
}

.menu-card h2 {
  margin-top: 0;
  color: #d16b86; /* rose accent for headers */
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-card li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
.menu-card li:last-child {
  border-bottom: none;
}

.back-link {
  text-align: center;
  margin-top: 1rem;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 480px) {
  body.landing .bg img {
    object-position: 50% 5%;
  }
  body.menu-page .bg img {
    object-position: 50% 12%;
  }
}

@media (min-width: 481px) and (max-width: 900px) {
  body.landing .bg img {
    object-position: 50% 10%;
  }
  body.menu-page .bg img {
    object-position: 50% 16%;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  body.landing .bg img {
    object-position: 50% 20%;
  }
  body.menu-page .bg img {
    object-position: 50% 22%;
  }
}
