:root {
  --primary: #3b7f86;
  --accent: #e57c00;
  --bg: #F8F5EF;
  --text: #2b2b2b;
  --muted: #6b6b6b;
}

/* =========================
   FONTS
========================= */

@font-face {
  font-family: 'Barlow Condensed Light';
  src: url('./fonts/barlow-condensed-v13-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow Bold';
  src: url('./fonts/barlow-v13-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow Light';
  src: url('./fonts/barlow-v13-latin-300.woff2') format('woff2');
}

/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Barlow Light', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* =========================
   ANIMATIONEN
========================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.delay {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HEADER
========================= */

.header {
  padding: 80px 20px 50px;
  position: relative;
  overflow: hidden;
}

/* organische Fläche */
.header::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -200px;
  width: 650px;
  height: 650px;
  background: var(--primary);
  border-radius: 55% 45% 60% 40%;
  opacity: 0.9;
}

/* weicher Glow */
.header::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: var(--accent);
  border-radius: 60%;
  opacity: 0.12;
  filter: blur(40px);
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT */

.header-left {
  background: rgba(255,255,255,0.88);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.05),
    0 30px 60px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.header-left:hover {
  transform: translateY(-3px);
}

.logo {
  width: 350px;
  margin-bottom: 30px;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 10px 0;
  color: var(--primary);
  font-family: 'Barlow Condensed Light';
  text-transform:uppercase;
}

.date {
  color: var(--muted);
  font-size: 17px;
  font-weight:700;
}

/* RIGHT */

.header-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.08),
    0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.4s ease;
}

.header-right img:hover {
  transform: scale(1.02);
}

/* =========================
   MAIN
========================= */

.container {
  max-width: 1000px;
  margin: 0px auto 60px;
  padding: 0px 20px 20px 20px;
}

/* =========================
   INTRO
========================= */

.card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.04),
    0 20px 50px rgba(0,0,0,0.06);
}

.intro {
  border-left: 6px solid var(--accent);
}

.names {
  margin-top: 20px;
  color: var(--primary);
  font-weight: 700;
}

/* =========================
   GRID
========================= */

.info-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 15px 35px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 15px 30px rgba(0,0,0,0.08),
    0 25px 50px rgba(0,0,0,0.10);
}

.info-card h3 {
  margin-top: 0;
  color: var(--primary);
  font-family: 'Barlow Bold';
  text-transform:uppercase;
}

.info-card a {
  color: var(--text);
  text-decoration: none;
}

.info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================
   FOOTER
========================= */

.footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer a {
  margin: 0 15px;
}

a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  position: relative;
}

a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

/* =========================
   APP HINWEISBOX
========================= */
.app-notice {
  background: #D3ACD1; /* Hervorgehoben in Lila */
  padding: 35px;
  border-radius: 18px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.06),
    0 25px 60px rgba(0,0,0,0.08);
  text-align: center;
  margin-bottom: 0px;
  margin-top: 40px;
  color: #2b2b2b;
}

.app-notice h3 {
  margin-top: 0;
  color: var(--primary); /* passend zu primärfarbe */
  font-family: 'Barlow Bold';
  text-transform: uppercase;
  font-size: 24px;
}

.app-notice .app-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.app-notice .app-links img {
  object-fit: contain;
  transition: transform 0.3s ease;
}

.app-notice .app-links img:hover {
  transform: scale(1.05);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header-right img {
    height: 260px;
  }

  .headline h1 {
    font-size: 30px;
  }

  .header-left {
    padding: 25px;
  }

  .logo {
    width: 250px;
  }
  .app-notice .app-links {
    flex-direction: column;
    gap: 15px;
  }
}