@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* =====================
   CSS VARIABLEN – hier Farben anpassen
   ===================== */
:root {
  --bg:           #F7F5F0;
  --surface:      #FFFDF9;
  --surface2:     #F0EDE5;
  --border:       #E2DDD4;
  --accent:       #8BAF7C;
  --accent-light: #D6E8CE;
  --accent-dark:  #5A7A4E;
  --beige:        #EDE8DF;
  --text:         #2A2620;
  --muted:        #7A7268;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

a { color: inherit; }

/* =====================
   NAVIGATION
   ===================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent-dark); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); font-weight: 500; }

.nav-cta {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.82; }

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.82; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--muted); transform: translateY(-1px); }

/* =====================
   SECTION HELPERS
   ===================== */
.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 1.7;
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  padding: 72px 40px 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(139,175,124,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 600px;
}
.page-hero p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

/* =====================
   CTA STRIP
   ===================== */
.cta-strip {
  margin: 0 40px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-strip h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.cta-strip p { font-size: 14px; color: var(--muted); font-weight: 300; }

/* =====================
   FOOTER
   ===================== */
footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* =====================
   COOKIE BANNER
   ===================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
#cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  margin: 0;
}
#cookie-banner p a { color: var(--accent-dark); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
}
.cookie-accept:hover { opacity: 0.82; }
.cookie-decline:hover { border-color: var(--muted); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }

  .page-hero { padding: 48px 20px 40px; }

  .cta-strip {
    margin: 0 20px 32px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}

/* =====================
   HAMBURGER MENÜ (Mobile)
   ===================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 57px;
  left: 0; right: 0;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-cta-mobile {
  margin-top: 8px;
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  font-weight: 500;
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}
