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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #0b0a0a;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: #fff8f1;
}

.background-layer {
  position: fixed;
  inset: 0;
  background: url("./Backgrond.png") center / cover no-repeat;
  filter: brightness(0.84) contrast(1.04);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 84% 78%, rgba(240, 154, 45, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.34));
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 40px;
}

.site-header,
.section-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(21, 17, 17, 0.3);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.site-header {
  position: sticky;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 26px;
  margin-bottom: 22px;
}

.brand,
.nav-link,
.action-button,
.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 210, 120, 0.5);
}

.brand-name {
  font: 700 clamp(1.6rem, 2.2vw, 2.2rem) / 1 "Bahnschrift SemiBold", "Trebuchet MS", sans-serif;
  background: linear-gradient(180deg, #fffdf7 0%, #ffd56d 58%, #e19a2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.1);
  color: #ffe0a7;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: linear-gradient(135deg, rgba(242, 161, 58, 0.92), rgba(203, 101, 23, 0.9));
  color: #26170d;
  transform: translateY(-1px);
}

.section-card {
  padding: 28px;
  border-radius: 30px;
}

.hero-card {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-kicker {
  margin: 0 0 10px;
  color: #ffc96e;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-card h1,
.section-card h2 {
  margin: 0;
  font-family: "Bahnschrift SemiBold", "Trebuchet MS", sans-serif;
  line-height: 1.02;
}

.hero-card h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 620px;
}

.section-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.hero-copy,
.section-card p,
.info-list {
  color: rgba(255, 248, 241, 0.88);
  line-height: 1.75;
}

.hero-copy {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2a13a, #cb6517);
  color: #26170d;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.action-button.secondary {
  background: rgba(255, 249, 241, 0.12);
  color: #ffe2b1;
  border: 1px solid rgba(255, 210, 120, 0.28);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-card-wide {
  grid-column: 1 / -1;
}

.info-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.info-list li + li {
  margin-top: 8px;
}

.text-link {
  color: #ffd56d;
  font-weight: 700;
}

.specials-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.specials-list div,
.reservation-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.12);
}

.specials-list strong,
.reservation-box strong,
.contact-grid strong {
  color: #fff7ef;
}

.specials-list span {
  color: #ffc96e;
  font-weight: 700;
}

.reservation-box {
  margin-top: 18px;
}

.reservation-box span {
  color: #ffc96e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-tabs {
    justify-content: flex-start;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    margin-top: 12px;
  }

  .site-header,
  .section-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }
}
