/* ─── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ─── CSS-Variablen ────────────────────────────────────── */
:root {
  /* Brand */
  --color-brand-main:     #AE3027;
  --color-brand-darker:   #8A2420;
  --color-brand-subtle:   #FFF5F5;
  --color-brand-border:   #FADDDA;
  --color-accent:         #FFD700;

  /* Neutrals */
  --color-heading:        #1A1A1A;
  --color-body:           #3D3D3D;
  --color-text-muted:     #7A7A7A;
  --color-bg-white:       #FFFFFF;
  --color-bg-light:       #F7F7F7;
  --color-off-white:      #FAF9F7;
  --color-border:         #DCDAD7;
  --color-border-soft:    #EDEBE8;

  /* Typografie */
  --font-main:            'DM Sans', sans-serif;
  --font-size-body:       17px;
  --line-height-body:     1.6;

  /* Layout */
  --max-width:            1280px;
  --section-padding:      100px 40px;
  --section-padding-mobile: 64px 20px;
  --nav-height:           72px;

  /* Shadows */
  --shadow-card:          0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-card-hover:    0 12px 40px rgba(0, 0, 0, 0.13);
  --shadow-nav:           0 2px 20px rgba(0, 0, 0, 0.08);
}

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

/* ─── Basis ────────────────────────────────────────────── */
html { scroll-behavior: auto; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-main);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-body);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.15;
}

a { color: var(--color-brand-main); text-decoration: none; }
a:hover { color: var(--color-brand-darker); }

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

input, select, textarea { font-family: inherit; }

ul, ol { list-style: none; }

/* ─── Utility ──────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .container { padding: 0 20px; }
}
