@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,500;1,600;1,700&display=swap');

@font-face {
  font-family: 'Prida02Calt';
  src: url('assets/fonts/Prida02Calt.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #2b2b2b;
  background: #ffffff;
}

/* ---------- Header ---------- */

.site-header {
  position: relative;
  overflow: hidden;
  height: clamp(190px, 24vw, 250px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  object-fit: fill;
}

.logo-row {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px 5px;
}

.logo-row a {
  text-decoration: none;
}

.site-logo {
  font-family: 'Prida02Calt', 'Poppins', sans-serif;
  font-weight: 600;
  color: #5c7a32;
  font-size: clamp(4.8rem, 10vw, 5.7rem);
  margin: 0;
  margin-top:-0.2em;
  line-height: 1;
  letter-spacing: 0.5px;
}

nav.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 12vw, 220px);
  padding: 10px 20px 0;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: #2b2b2b;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: #5c7a32;
}

/* ---------- Page content ---------- */

main.page-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px clamp(30px, 10vw, 180px) 90px;
  min-height: 60vh;
}

main.page-content h1 {
  font-family: 'Poppins', Arial, sans-serif;
  font-style: italic;
  font-weight: 600;
  color: #5c7a32;
  font-size: 2rem;
  margin-bottom: 20px;
}

main.page-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 1.2em;
  color: #333;
}

main.page-content li {
  font-size: 0.8rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

/* ---------- Footer ---------- */

footer.site-footer {
  text-align: center;
  padding: 30px 20px;
  color: #888;
  font-size: 0.85rem;
  border-top: 1px solid #f0e6ec;
}
