* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #f6f1e8;
  background: #0b3d2e;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  background: #1a6b52;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd27a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.08);
}

.map-btn {
  background: #ffb347;
  color: #111;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  border-radius: 10px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

.hero,
.page-hero {
  padding: 72px 20px;
  text-align: center;
}

.hero h1,
.page-hero h1,
.hero h2,
.page-hero h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

main,
section.content-wrap {
  padding: 32px 20px 64px;
}

.content-card,
.menu-item,
.cart,
.form-card,
.admin-card {
  background: #145c43;
  padding: 22px;
  border-radius: 14px;
  margin: 0 auto 18px;
  max-width: 1100px;
}

button,
.cta {
  background: #ffb347;
  color: #111;
  border: none;
  padding: 11px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

button:hover,
.cta:hover {
  filter: brightness(1.05);
}

.site-footer {
  background: #1a6b52;
  padding: 22px 20px;
  text-align: center;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #0e4a36;
  color: #fff;
  margin-top: 6px;
  margin-bottom: 14px;
}

label {
  display: block;
  font-weight: 700;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #1a6b52;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 20px;
  }

  .nav-links.open {
    display: flex;
  }
}


.page-hero {
  background: linear-gradient(180deg, #104634 0%, #145c43 100%);
}

.form-card {
  max-width: 760px;
}
