:root {
  --bg: #fbfbf7;
  --ink: #2f4a35;
  --muted: #7c9183;
  --brand: #2f4a35;
  --accent: #c9d3c5;
}

body {
  font-family: "Urbanist", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3 {
  font-family: "Prata", serif;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  color: var(--brand);
  font-weight: 700;
}

.navbar {
  background: rgba(47, 74, 53, 0.92);
  backdrop-filter: blur(8px);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.15rem;
}
.brand-logo {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #1f3326;
  border-color: #1f3326;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--brand);
}

.hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #1f3326, var(--brand));
  color: #fff;
}
.hero-logo {
  height: 110px;
  width: 110px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}
.hero .lead {
  color: var(--accent);
}

.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  background: url("./images/logo.png") center / contain no-repeat;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.section .container {
  position: relative;
  z-index: 1;
}

.menu-card {
  border: none;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(47, 74, 53, .08);
}
.menu-card .card-text {
  color: var(--muted);
}
.menu-icon {
  width: 56px;
  height: 56px;
}
.menu-card .card-title {
  font-size: 1.25rem;
  color: var(--brand);
}

.footer {
  font-size: .85rem;
  color: var(--muted);
}
.footer-link,
.cookie-link {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .2);
}
.cookie-banner p {
  flex: 1 1 320px;
  color: var(--accent);
}
