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

/* ── VARIABLES ── */
:root {
  --forest: #1b4332;
  --forest-light: #2d6a4f;
  --sage: #52796f;
  --mint: #95d5b2;
  --cream: #fefae0;
  --warm-white: #fdfcf7;
  --sand: #e9e5d6;
  --clay: #c2b280;
  --bark: #3a3226;
  --ember: #bc4749;
  --ember-light: #e07a5f;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --radius: 10px;
  --radius-lg: 18px;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root { color-scheme: light only; }

html { scroll-behavior: smooth; background-color: var(--warm-white); }

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: var(--text);
  background: var(--warm-white) !important;
  color-scheme: light only;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,252,247,0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--forest);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mint);
  display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.nav-cta {
  background: var(--forest);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--forest-light); transform: translateY(-1px); }
.nav-back {
  color: var(--forest);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--forest-light); }

/* ── SUB-PAGE LAYOUT (impressum, datenschutz) ── */
.page-content {
  padding: 120px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}
.page-content h1 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--forest);
  margin-bottom: 8px;
}
.page-subtitle {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--sand);
}
.divider {
  border: none;
  height: 1px;
  background: var(--sand);
  margin: 40px 0;
}
.placeholder-note {
  display: inline-block;
  background: var(--cream);
  border: 1px dashed var(--clay);
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  padding: 2px 10px;
  border-radius: 4px;
}

/* ── FOOTER ── */
footer {
  padding: 40px 0;
  background: var(--forest);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-align: center;
}
footer a { color: var(--mint); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── FORCE LIGHT APPEARANCE ── */
@media (prefers-color-scheme: dark) {
  html, body { background-color: #fdfcf7 !important; color: #2c2c2c !important; }
  img, svg { filter: none !important; }
  *, *::before, *::after { color-scheme: light only !important; }
  nav { background-color: rgba(253,252,247,0.95) !important; }
  footer { background-color: #1b4332 !important; }
}
