﻿/* base.css — global styles & typography */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.is-loading-kontakt body {
  opacity: 0;
}

html.is-kontakt-reload .reveal,
html.is-kontakt-reload .value-block {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 0% 0%, rgba(33, 183, 219, 0.18), transparent 55%),
    radial-gradient(900px 600px at 100% 20%, rgba(35, 208, 165, 0.14), transparent 45%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 24px 0 28px;
}

.section-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.section-text {
  font-size: 17px;
  color: var(--muted);
  max-width: 900px;
}
