:root {
  --primary: #7f8642;
  --primary-dark: #5c622f;
  --accent: #1f2410;
  --bg: #f4f5ed;
  --surface: #ffffff;
  --surface-contrast: #1d2210;
  --text: #11150a;
  --muted: #4a5130;
  --border: #d8dcc3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 94%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--surface-contrast);
}

.brand img {
  width: 47px;
  height: 47px;
  border-radius: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--surface-contrast);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: #ecefdc;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: left;
  background-image: linear-gradient(rgba(17, 21, 10, 0.65), rgba(17, 21, 10, 0.55)), url("../image/picture.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  margin-bottom: 12px;
}

.hero p {
  max-width: 700px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.btn {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--surface-contrast);
  border-color: var(--border);
}

.section {
  padding: 58px 0;
}

.section:nth-of-type(even) {
  background: #e8ecd4;
}

.section h2 {
  color: var(--surface-contrast);
  margin-top: 0;
  margin-bottom: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--surface-contrast);
}

.icon-row i {
  font-size: 1.3rem;
  color: var(--accent);
}

.plain-menu {
  white-space: pre-line;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  font-family: "Consolas", "Courier New", monospace;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  background: #fff;
}

.table th {
  background: #dfe4c5;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 12px;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  padding: 0 12px 12px;
}

.events-list,
.safe-list {
  padding-left: 20px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bfc7a0;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
}

label {
  font-weight: 600;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
}

.disclaimer {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid var(--primary-dark);
  background: #f0f3de;
  font-size: 0.94rem;
}

.site-footer {
  background: #161b0d;
  color: #ecf0d8;
  padding: 26px 0;
}

.site-footer a {
  color: #f2f8d0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  background: #11150a;
  color: #fff;
  border-radius: 14px;
  border: 1px solid #353d20;
  padding: 14px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-btn {
  border: 1px solid #707b46;
  background: #232b14;
  color: #fff;
  border-radius: 9px;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--primary);
}

.cookie-settings {
  display: none;
  margin-top: 12px;
  border-top: 1px solid #3b4422;
  padding-top: 10px;
}

.cookie-settings.show {
  display: block;
}

@media (max-width: 900px) {
  .grid-2,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-bottom: 14px;
  }

  .site-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
}

@media (max-width: 320px) {
  .container {
    width: 96%;
  }

  .hero {
    min-height: 74vh;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .section {
    padding: 42px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
