:root {
  --resto-dark: #0d0d0f;
  --resto-dark-2: #171718;
  --resto-gold: #d89b3a;
  --resto-cream: #fff8ec;
  --resto-muted: #7f776d;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fbf7ef;
  color: #1f1f1f;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.font-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.navbar {
  background: rgba(9, 9, 10, 0.96);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  font-family: Georgia, serif;
  font-size: 2.3rem;
}

.navbar-brand span,
.text-gold {
  color: var(--resto-gold);
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--resto-gold);
  border-color: var(--resto-gold);
  color: #14110d;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.btn-gold:hover {
  background: #ebb452;
  border-color: #ebb452;
  color: #14110d;
}

.btn-outline-gold {
  border-color: var(--resto-gold);
  color: var(--resto-gold);
  font-weight: 800;
}

.btn-outline-gold:hover {
  background: var(--resto-gold);
  color: #111;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25)),
    url('../images/hero.jpg') center / cover;
  display: flex;
  min-height: 92vh;
}

.hero-kicker {
  color: var(--resto-gold);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
}

.section-kicker {
  color: var(--resto-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.dish-card {
  border: 0;
  border-radius: 1.2rem;
  box-shadow: 0 18px 45px rgba(30, 24, 15, 0.12);
  overflow: hidden;
  transition: 0.25s;
}

.dish-card:hover {
  box-shadow: 0 28px 60px rgba(30, 24, 15, 0.18);
  transform: translateY(-7px);
}

.dish-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 170px;
  object-fit: cover;
}

.price {
  color: #b77517;
  font-size: 1.35rem;
  font-weight: 900;
}

.about-band {
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
    url('../images/hero.jpg') center / cover;
  color: white;
}

.feature-icon {
  border: 1px solid rgba(216, 155, 58, 0.5);
  border-radius: 50%;
  color: var(--resto-gold);
  display: grid;
  font-size: 2rem;
  height: 76px;
  place-items: center;
  width: 76px;
}

.booking {
  background: #101011;
  color: white;
}

.form-control,
.form-select {
  background: #151515;
  border: 1px solid #3a3a3a;
  color: white;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus,
.form-select:focus {
  background: #181818;
  border-color: var(--resto-gold);
  box-shadow: 0 0 0 0.25rem rgba(216, 155, 58, 0.15);
  color: white;
}

.gallery-img {
  border-radius: 1.2rem;
  height: 320px;
  object-fit: cover;
}

.footer {
  background: #090909;
  color: #bbb;
}

.footer a {
  color: #ddd;
  text-decoration: none;
}

.footer a:hover {
  color: var(--resto-gold);
}


.dish-card .card-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.dish-card p {
  min-height: 3rem;
}

.dish-card img[alt="Tiramisu dessert"] {
  object-position: center;
}

.dish-card img[alt="Ribeye steak"],
.dish-card img[alt="Grilled salmon"] {
  object-position: center 55%;
}
