/* css/site.css */

/* ---------- Theme tokens ---------- */
:root{
  --brand: #e56a00;          /* Accent (z.B. Orange) */
  --brand-2: #1e66ff;        /* Secondary (z.B. Blau) */
  --ink: #0f172a;            /* Text */
  --muted: #475569;          /* Secondary text */
  --bg: #0b1220;             /* Dark hero */
  --card: #ffffff;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 18px 45px rgba(2, 6, 23, .12);
  --radius: 22px;
}

/* ---------- Base ---------- */
html, body { height: 100%; }
body{
  color: var(--ink);
  background: #f8fafc; /* sauberer, ruhiger Seitenhintergrund */
}


a { text-decoration: none; }
a:hover { text-decoration: underline; }

.section-pad { padding: 4.5rem 0; }
@media (max-width: 576px){
  .section-pad { padding: 3rem 0; }
}

/* ---------- Navbar ---------- */
.navbar{
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, .82) !important;
  border-bottom: 1px solid var(--border);
}

.navbar-brand{
  letter-spacing: .2px;
}

.nav-link{
  font-weight: 500;
}

.nav-link.active{
  color: var(--ink) !important;
  position: relative;
}
.nav-link.active::after{
  content:"";
  position:absolute;
  left:.5rem; right:.5rem; bottom:.25rem;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn-brand{
  border: 1px solid transparent;
  color: #fff !important;
  background: var(--brand);
  box-shadow: 0 10px 25px rgba(229, 106, 0, .22);
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-brand:hover{
  background: rgba(255,255,255,.92);
  color: var(--brand) !important;
  border-color: var(--brand);
  transform: translateY(-1px);
}
.btn-brand:active{
  transform: translateY(0);
}
.btn-soft{
  border: 2px solid rgba(255,255,255,.32);  /* dicker + sichtbarer */
  background: rgba(255,255,255,.16);        /* leicht transparent auf dunkel */
  color: #fff;                               /* auf Hero gut lesbar */
  transition: transform .15s ease, background-color .15s ease,
              border-color .15s ease, box-shadow .15s ease, color .15s ease;
}

.btn-soft:hover{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.55);      /* noch klarer im Hover */
  box-shadow: 0 10px 24px rgba(0,0,0,.25),
              0 0 0 4px rgba(229,106,0,.12); /* dezenter Orange-Akzent */
  transform: translateY(-1px);
  color: #fff;
}

.btn-soft:active{
  transform: translateY(0);
  background: rgba(255,255,255,.18);
}

/* ---------- Hero ---------- */
.hero{
  background:
    radial-gradient(900px 450px at 20% 0%, rgba(255,106,0,.20), transparent 60%),
    radial-gradient(900px 450px at 90% 10%, rgba(30,102,255,.20), transparent 55%),
    linear-gradient(180deg, rgba(11,18,32,1) 0%, rgba(11,18,32,.94) 100%);
  color: #e5e7eb;
  overflow: hidden;
}

.hero .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: .9rem;
}

.hero h1{
  letter-spacing: -0.6px;
  color: #fff;
}

.hero .lead{
  color: rgba(229,231,235,.9);
  max-width: 52ch;
}

.hero-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(0,0,0,.25);
  overflow: hidden;
}

.hero-img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;   /* wie das frühere Querformat */
  object-fit: cover;
  object-position: center;
}

/* ---------- Cards / blocks ---------- */
.card-soft{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 25px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-soft:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-bubble{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,106,0,.25), rgba(30,102,255,.20));
  border: 1px solid var(--border);
}

.muted{ color: var(--muted); }

/* ---------- Image block ---------- */
.rounded-xxl{
  border-radius: var(--radius);
}

/* ---------- Testimonial ---------- */
.quote{
  font-size: 1.05rem;
  line-height: 1.6;
}
.quote::before{
  content: "“";
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.25rem;
  margin-right: .25rem;
  color: rgba(15,23,42,.35);
}

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.7);
}
.site-footer a{
  color: var(--muted);
}
.site-footer a:hover{
  color: var(--ink);
}
/* Mehr Seitenabstand auf kleinen Screens */
@media (max-width: 576px) {
  .container,
  .container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}