/* ==========================================================================
   FONT: Inter – lokal, DSGVO-freundlich
   ========================================================================== */

@font-face {
  font-family: "Inter";
  src: url("Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


/* ==========================================================================
   ROOT & GLOBAL
   ========================================================================== */

:root {
  --bg-dark: #050409;
  --card-bg: rgba(5, 4, 9, 0.38);
  --accent: #caa8ff;                /* Soft Lavender */
  --accent-soft: rgba(202, 168, 255, 0.45);
  --accent-bright: rgba(202, 168, 255, 0.9);
  --text-main: #fdf9ff;
  --text-muted: #d8d0e5;
  --max-width: 980px;
  --radius-lg: 20px;

  --logo-letter-spacing-desktop: 0.10em;
  --logo-letter-spacing-mobile: 0.08em;

  --logo-glow-soft: rgba(202, 168, 255, 0.65);
  --logo-glow-strong: rgba(202, 168, 255, 0.80);
  --logo-glow-far: rgba(202, 168, 255, 0.95);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;

  color: var(--text-main);
  background-color: var(--bg-dark);
  background-image: url("bgr.png");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

/* Mobile / Tablet: kein fixed-Scroll-Bug */

@media (max-width: 1200px) {
  body {
	background-image: url("bgr_s.png");
    background-attachment: fixed;
    background-position: center top;
    background-size: contain;
	background-repeat: repeat-y;
  }
}

/* Ankerlinks nicht unter Header verschwinden lassen */

section[id] {
  scroll-margin-top: 14rem;
}


/* ==========================================================================
   TYPOGRAPHIE
   ========================================================================== */

h1,
h2,
h3,
h4 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

p {
  margin-top: 0;
}

/* Fließtext-Feintuning */

.body-text,
.body-text.small,
.body-text.tiny,
.footer-text {
  letter-spacing: 0.005em;
}

.body-text {
  font-size: 0.96rem;
  color: var(--text-main);
  margin: 0 0 0.9rem;
  font-weight: 400;
}

.body-text.small {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.body-text.tiny {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.small-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Abschnittsüberschriften */

.section-heading {
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
  font-weight: 600;
}

.section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
  font-weight: 500;
}


/* ==========================================================================
   BILD-OVERLAY & FOG
   ========================================================================== */

/* Dunkler Verlauf für Lesbarkeit */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.5) 35%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(0, 0, 0, 0.00) 100%
    );
}

/* Sanfter, subtiler Fog – Drift */

@keyframes driftFog {
  0% {
    transform: translate3d(-8%, -2%, 0);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(6%, 4%, 0);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(-4%, 0%, 0);
    opacity: 0.5;
  }
}

/* Fog immer aktiv – sehr dezent */

body::after {
  content: "";
  position: fixed;
  inset: 10%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.14) 0, transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.08) 0, transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.10) 0, transparent 60%);
  opacity: 0.6;
  filter: blur(40px);
  mix-blend-mode: screen;
  animation: driftFog 60s linear infinite alternate;
}


/* ==========================================================================
   LAYOUT-CONTAINER
   ========================================================================== */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.content-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}


/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-soft);
  padding: 2.2rem 2.4rem;
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  margin-bottom: 1.8rem;
}

.card-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 820px) {
  .card-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}


/* ==========================================================================
   HEADER / BRAND / NAV
   ========================================================================== */

/* Header: am Desktop sticky + Blur, mobil normal */

.site-header {
  padding: 1.8rem 1.5rem 0.4rem;
  z-index: 40;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 4, 9, 0.96),
      rgba(5, 4, 9, 0.78),
      rgba(5, 4, 9, 0.0)
    );
}

@media (min-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* Fallback ohne Blur */

@supports not (backdrop-filter: blur(8px)) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background:
      linear-gradient(
        to bottom,
        rgba(5, 4, 9, 0.96),
        rgba(5, 4, 9, 0.96),
        rgba(5, 4, 9, 0.9)
      );
  }
}

.brand {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}

/* Logo: Basis + Glow */

.brand-title {
  margin: 0;
  font-size: clamp(2.2rem, 2.7vw + 1.2rem, 3rem);
  letter-spacing: var(--logo-letter-spacing-desktop);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  text-shadow:
    0 0 30px var(--logo-glow-soft),
    0 0 50px rgba(202, 168, 255, 0.40),
    0 0 60px rgba(202, 168, 255, 0.30);
}

.brand-subtitle {
  margin: 0.05rem 0 0.7rem;
  font-size: 1.03rem;
  color: var(--text-muted);
  font-weight: 400;
  text-shadow:
    0 0 18px rgba(202, 168, 255, 0.25),
    0 0 28px rgba(202, 168, 255, 0.20);
}

/* Logo-Animation */

@keyframes logoPulse {
  from {
    text-shadow:
      0 0 30px var(--logo-glow-soft),
      0 0 50px rgba(202, 168, 255, 0.40),
      0 0 60px rgba(202, 168, 255, 0.30);
  }
  to {
    text-shadow:
      0 0 50px var(--logo-glow-strong),
      0 0 80px rgba(202, 168, 255, 0.85),
      0 0 110px var(--logo-glow-far);
  }
}

.brand-title,
.brand-subtitle {
  transition:
    text-shadow 0.3s ease,
    transform 0.22s ease,
    letter-spacing 0.22s ease,
    color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .brand-title:hover {
    transform: translateY(-1.5px);
    letter-spacing: 0.12em;
    animation: logoPulse 2.6s ease-in-out infinite alternate;
  }

  .brand-subtitle:hover {
    transform: translateY(-1px);
    animation: logoPulse 2.6s ease-in-out infinite alternate;
  }
}

/* Mobile-Anpassung Logo */

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .brand-title {
    font-size: clamp(1.7rem, 2.1rem, 2.3rem);
    letter-spacing: var(--logo-letter-spacing-mobile);
  }

  .brand-subtitle {
    font-size: 0.94rem;
  }

  .section-heading {
    font-size: 1.2rem;
  }

  .body-text {
    font-size: 0.9rem;
  }
}

/* Navigation */

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 0.8rem;
}

.nav a {
  font-size: 0.86rem;
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text-main);
  border-color: var(--accent-soft);
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.hero-text {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 400;
}

/* Extra-Glow speziell für "Weil Dein Leben Dir gehört." */

.hero .hero-mainline {
  text-shadow:
    0 0 12px rgba(202, 168, 255, 0.65),
    0 0 28px rgba(202, 168, 255, 0.45),
    0 0 52px rgba(202, 168, 255, 0.30);
}

@media (hover: hover) and (pointer: fine) {
  .hero .hero-mainline:hover {
    text-shadow:
      0 0 14px rgba(202, 168, 255, 0.8),
      0 0 34px rgba(202, 168, 255, 0.55),
      0 0 68px rgba(202, 168, 255, 0.38);
  }
}

/* Hauptclaim im Hero -. größer als nromale Überschriften*/
.hero-mainline {
	font-size: 1.55rem; /*1.35rem ist section-heading */
	font-style: italic;
}

@media (max-width: 600px) {
	.hero-mainline {
		font-size: 1.4rem;
		font-style: italic;
	}
}

/* ==========================================================================
   TAGLIST, PILL-GRID, LISTEN
   ========================================================================== */

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 0.3rem;
  padding: 0;
  list-style: none;
}

.tag {
  font-size: 0.82rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: rgba(202, 168, 255, 0.05);
  color: var(--text-muted);
  text-shadow: 0 0 0px rgba(202, 168, 255, 0.35);
  box-shadow:
    0 0 12px rgba(202, 168, 255, 0.05),
    0 0 20px rgba(202, 168, 255, 0.00);
  font-weight: 400;
}

.bullet-list {
  margin: 0 0 0.6rem;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  font-weight: 400;
}

.bullet-list li + li {
  margin-top: 0.25rem;
}

/* Pill-Grid (Klarheit / Tiefe / Integrität) */

.pill-grid {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

@media (min-width: 720px) {
  .pill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pill-block {
  border-radius: 14px;
  border: 1px solid var(--accent-soft);
  background: rgba(9, 7, 17, 0.3);
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pill-block h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
}


/* ==========================================================================
   HOVER-FEEDBACK: CARDS, TAGS, PILLS
   ========================================================================== */

.card,
.tag,
.pill-block {
  transition:
    transform 0.22s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.20s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-1px);
    background-color: rgba(5, 4, 9, 0.50);
    box-shadow:
      0 20px 55px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .tag:hover,
  .pill-block:hover {
    transform: translateY(-1px);
    background-color: rgba(202, 168, 255, 0.14);
    color: var(--text-main);
    box-shadow:
      0 0 14px rgba(202, 168, 255, 0.25),
      0 2px 6px rgba(0, 0, 0, 0.35);
  }
}


/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */

.button {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: linear-gradient(
    to bottom right,
    rgba(202, 168, 255, 0.35),
    rgba(202, 168, 255, 0.12)
  );
  color: var(--accent);
  font-size: 0.9rem;
  text-decoration: none;
}

.button:hover {
  text-shadow: 0 0 8px var(--accent-soft);
}

/* Accent Glow – generisch */

.accent-glow {
  color: var(--accent);
  text-shadow:
    0 0 8px var(--accent-soft),
    0 0 22px rgba(202, 168, 255, 0.35);
}

/* globale Linkfarbe */

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-soft);
}


/* ==========================================================================
   KONTAKT / FOOTER
   ========================================================================== */

.contact-block {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .contact-block {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-label {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--accent);
  margin-bottom: 0.1rem;
}

.contact-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 400;
}

.contact-link:hover {
  text-decoration: underline;
}

.site-footer {
  position: relative;
  margin-top: 1.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top,
      rgba(202, 168, 255, 0.18) 0%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 4, 9, 0.0),
      rgba(5, 4, 9, 0.1) 30%,
      rgba(5, 4, 9, 0.85) 100%
    );
  filter: blur(20px);
  z-index: -1;
}

.footer-wrapper {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 820px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-card {
  background: rgba(5, 4, 9, 0.33);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.footer-heading {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 0.9rem;
  font-weight: 400;
}

.footer-text.tiny {
  font-size: 0.8rem;
  opacity: 0.7;
  color: var(--text-muted);
}

.footer-copy {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0.8;
  font-weight: 400;
}
