/* ===================== */
/* Design-Token / Farben */
/* ===================== */
:root {
  --bg-deep: #0f1113;            /* Grundhintergrund */
  --felt-green: #0f3d2e;         /* Filzton */
  --alpine-emerald: #2fbf71;     /* Akzent grün */
  --alpenglow-1: #ff7a59;        /* warmes Alpenglühen */
  --alpenglow-2: #ffd166;        /* warmes Gelb */
  --gold: #f1c40f;               /* Gold-Akzent */
  --text-weak: #aeb7bf;          /* schwächerer Text */
  --glass-bg: rgba(255,255,255,.06);
  --glass-brd: rgba(255,255,255,.14);
}

/* ===================== */
/* Global / Hintergrund  */
/* ===================== */
body.home {
  background:
  radial-gradient(1200px 700px at 10% -10%, rgba(255,122,89,.12), transparent),
  radial-gradient(900px 600px at 90% 10%, rgba(47,191,113,.12), transparent);
  background-color: #232323;
  background-repeat: no-repeat;
  color: #cbcbcb;
}
body{
  background: none;
  background-color: #393939;
}

/* Markenlogo etwas kleiner + smooth */
.brand-logo { width: 140px; height: auto; transition: transform .2s ease; }
.navbar-glass.is-scrolled .brand-logo { transform: scale(.92); }
.brand-wordmark { font-weight: 700; letter-spacing: .2px; display:none; }
@media (min-width: 992px) { .brand-wordmark { display:inline; } }

/* ===================== */
/* Navigation (Glas)     */
/* ===================== */
.navbar-glass {
  background: rgba(15,17,19,.55);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.navbar-glass.is-scrolled { background: rgba(15,17,19,.85); }
.navbar-glass .nav-link { border-radius: 10px; }
.navbar-glass .nav-link:hover { background: rgba(255,255,255,.06); }

/* ===================== */
/* Hero                  */
/* ===================== */
.hero { position: relative; }
.hero .welcome-badge {
  display:inline-flex; align-items:center; gap:.4rem;
  padding: .4rem .7rem; font-weight:600; font-size:.95rem;
  border:1px solid var(--glass-brd); border-radius:999px; color:#fff;
  background: linear-gradient(90deg, rgba(47,191,113,.22), rgba(255,122,89,.22));
}
.text-highlight { color: var(--alpenglow-2); font-weight: 600; }
.hero-media { border:1px solid var(--glass-brd); background: var(--glass-bg); }
.hero-wave { position:absolute; left:0; right:0; bottom:-1px; width:100%; height:140px; }
.hero-wave path { fill: rgba(255,255,255,.06); }

/* ===================== */
/* Glassmorphism-Helper  */
/* ===================== */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.soft-badge { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); }

/* ===================== */
/* Buttons               */
/* ===================== */
.btn-cta {
  --bs-btn-padding-x: 1.2rem; --bs-btn-padding-y: .8rem; --bs-btn-font-weight: 700;
  --bs-btn-border-radius: .9rem; border: 0; color:#222;
  background-image: linear-gradient(90deg, var(--alpenglow-1), var(--alpenglow-2));
  box-shadow: 0 10px 20px rgba(255,122,89,.25);
}
.btn-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ===================== */
/* Footer                */
/* ===================== */
.site-footer { background: rgba(15,17,19,.75); border-top: 1px solid rgba(255,255,255,.07); }
.site-footer .nav-link { color: var(--text-weak); }
.site-footer .nav-link:hover { color: #fff; }

/* ===================== */
/* Kleinere Korrekturen  */
/* ===================== */
.lead.text-secondary-emphasis { color: #c9d1d9 !important; }
.shadow-xxl { box-shadow: 0 40px 80px rgba(0,0,0,.45)!important; }

/* Mobile Menü Overlay (bestehende Logik bleibt) */
#navOverlay { background-color: rgba(0,0,0,.88); }

/* Responsives Feintuning */
@media (max-width: 992px) {
  .navbar-brand img{ width: 124px; top: 8px; }
  .hero { padding-top: 88px; }
}