@font-face {
  font-family: 'Grundschrift';
  src: url('/fonts/Grundschrift_Beta.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #3B444B;
  background: #E8EEDF;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Grundschrift', sans-serif;
  line-height: 1.3;
}

a { color: #006CA7; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ── Navigation ──────────────────────────────────────────── */

.nav {
  background: #3B444B;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: 'Grundschrift', sans-serif;
  font-size: 1.3rem;
  text-decoration: none;
}

.nav-logo:hover { text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; border-radius: 6px; }

.nav-links { display: flex; gap: 6px; list-style: none; }

.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.12);
  color: white;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ── Layout ──────────────────────────────────────────────── */

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: #FFFAFA; }

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(135deg, #3B444B 0%, #2a3238 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 12px; }
.hero .tagline { font-size: 1.25rem; opacity: 0.85; margin-bottom: 40px; }

.hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ── Cards ───────────────────────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: #FFFAFA;
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid #8AAE1A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { color: #666; font-size: 0.95rem; }

.card-orange { border-left-color: #E7792C; }
.card-red { border-left-color: #A4252A; }
.card-green { border-left-color: #8AAE1A; }
.card-blue { border-left-color: #26A8D4; }
.card-violet { border-left-color: #70275D; }
.card-darkblue { border-left-color: #006CA7; }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  border: none;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: #8AAE1A; color: white; }
.btn-primary:hover { background: #7a9b17; }

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Section Headers ─────────────────────────────────────── */

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 8px; }
.section-header p { color: #666; font-size: 1.1rem; }

/* ── Feature List ────────────────────────────────────────── */

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #FFFAFA;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.feature-icon { font-size: 2rem; flex-shrink: 0; width: 48px; text-align: center; }
.feature-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature-item p { color: #666; font-size: 0.9rem; }

/* ── Gallery ─────────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.gallery-item {
  background: #FFFAFA;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.gallery-placeholder {
  background: linear-gradient(135deg, #E8EEDF, #d5dcc8);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
}

.gallery-item figcaption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* ── Team ────────────────────────────────────────────────── */

.team-section { margin-bottom: 32px; }

.team-section h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #E8EEDF;
}

.team-list { display: flex; flex-wrap: wrap; gap: 8px; }

.team-member {
  background: #FFFAFA;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* ── Partners ────────────────────────────────────────────── */

.partner-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 60px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.partner-logos img:hover { opacity: 1; }

/* ── Privacy ─────────────────────────────────────────────── */

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.privacy-item {
  text-align: center;
  padding: 24px;
  background: #FFFAFA;
  border-radius: 12px;
}

.privacy-item .icon { font-size: 2.5rem; margin-bottom: 12px; }
.privacy-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.privacy-item p { color: #666; font-size: 0.9rem; }

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  background: #3B444B;
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer a { color: rgba(255,255,255,0.85); }

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
  list-style: none;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #3B444B;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1rem; }
  .section { padding: 40px 0; }
  .section-header h2 { font-size: 1.7rem; }
}
