:root {
  --primary: #5cc68e;
  --dark: #123126;
  --light: #f4fff8;
  --text: #10241b;
  --muted: #315245;
  --white: #ffffff;
  --accent: #0c1f18;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 49, 38, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 0.95rem;
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  padding: 8px 10px;
  border-radius: 10px;
}

.hero {
  min-height: 86vh;
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(12, 31, 24, 0.72), rgba(12, 31, 24, 0.72)),
    url("../image/picture.jpg") center/cover;
  color: var(--white);
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.5rem);
  margin: 0 0 12px;
}

.hero p {
  max-width: 900px;
  margin: 0 auto 20px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
  color: var(--accent);
}

.btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

section {
  padding: 64px 0;
}

.alt {
  background: #d7f8e5;
}

.deep {
  background: var(--dark);
  color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid #c6efdb;
  border-radius: 16px;
  padding: 18px;
}

.deep .card {
  background: #184534;
  border-color: rgba(255, 255, 255, 0.2);
}

h2, h3 {
  line-height: 1.25;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.icon-title i {
  font-size: 1.5rem;
  color: #0d7a4a;
}

.deep .icon-title i {
  color: #b7ffd8;
}

ul.check {
  padding-left: 18px;
}

ul.check li {
  margin-bottom: 8px;
}

.events-list article,
.faq-item,
.guideline-item {
  background: var(--white);
  border-left: 6px solid var(--primary);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.deep .events-list article,
.deep .faq-item,
.deep .guideline-item {
  background: #225640;
  border-left-color: #a8f8cb;
}

form {
  display: grid;
  gap: 12px;
}

input, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #9ecfb6;
  border-radius: 10px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.disclaimer {
  background: #0f2b20;
  color: #dbffe9;
  padding: 20px;
  border-radius: 14px;
}

footer {
  background: #0d241b;
  color: var(--white);
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 18px;
}

.footer-grid a {
  color: #b7ffd8;
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.9rem;
  color: #dbffe9;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
  margin: 12px 0;
}

.site-note {
  background: #eefbf3;
  border: 1px solid #5cc68e;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  background: #0f2d21;
  color: var(--white);
  border: 1px solid #4ab97f;
  border-radius: 14px;
  padding: 14px;
  max-width: 940px;
  margin: 0 auto;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cookie-controls .btn {
  min-width: 140px;
}

.btn-reject {
  background: #ffffff;
  color: #123126;
  border: 2px solid #ffffff;
  font-weight: 700;
}

.cookie-banner a {
  color: #b7ffd8;
  text-decoration: underline;
}

.footer-odr {
  font-size: 0.9rem;
  margin: 8px 0;
}

.footer-odr a {
  color: #b7ffd8;
  text-decoration: underline;
}

.footer-cookie-btn {
  background: transparent;
  border: 1px solid #b7ffd8;
  color: #dbffe9;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
}

.cookie-settings {
  display: none;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 10px;
}

.cookie-settings.open {
  display: block;
}

.switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}

.map iframe {
  width: 100%;
  border: 0;
  min-height: 320px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .section-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  nav {
    position: absolute;
    inset: 72px 0 auto 0;
    background: #123126;
    display: none;
    padding: 10px 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-block;
  }
}

.legal-content h2 {
  margin-top: 28px;
}

.legal-content h3 {
  margin-top: 18px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.95rem;
}

.legal-content th,
.legal-content td {
  border: 1px solid #9ecfb6;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: #d7f8e5;
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  section {
    padding: 52px 0;
  }

  .hero {
    min-height: 78vh;
    padding: 12px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
