* {
  box-sizing: border-box;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

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;
}

.hero p {
  margin-bottom: 10px;
}


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: 1.25rem auto 1.125rem;
  max-width: 1100px;
}

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

.hero .cta {
  margin-top: 32px;
  display: inline-block;
}

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

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



.site-footer-small {
    background: #0f3d2e;
    color: #ffffff;
    text-align: center;
    padding: 18px 12px;
    margin-top: 40px;
    font-size: 14px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-small {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 6px;
}

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

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;
}

main {
  position: relative;
  overflow: hidden;
}

main::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image: url("../images/tiki-house-logo.png");

  background-repeat: repeat;
  background-position: center;

  background-size: 420px;

  opacity: .1;

  pointer-events: none;

  z-index: 0;
}
@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;
  }
}


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

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-box {
  background: #145c43;
  border-radius: 14px;
  padding: 20px;
}

@media (max-width: 900px) {
  .home-grid {
    grid-template-columns: 1fr;
  }
}
