/* ===============================
   ROOT VARIABLES
=============================== */
:root {
  --bg:#0b0b0f;
  --glass:#181823cc;
  --text:#e6e6f0;
  --muted:#aab0c0;
  --accent:#ff3b3b;
  --border:#2a2a33;
}

/* GLOBAL */
*{box-sizing:border-box}
body {
  margin: 0;
  font-family: Inter, system-ui, Arial;
  color: var(--text);

  background:
    radial-gradient(900px at 80% 10%, rgba(255, 50, 50, 0.15), transparent 70%),
    radial-gradient(700px at 20% 90%, rgba(255, 60, 60, 0.10), transparent 70%),
    #0b0b0f;
}

.container{
  width:min(1080px,100%);
  margin:auto;
  padding:0 24px;
}


/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(12,12,16,0.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  padding:12px 0;
}
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.header-logo{
  display:flex;
  gap:12px;
  align-items:center;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f6f6fa;           /* Schrift wie auf der Startseite */
}

.logo-link:visited {
  color: #f6f6fa;           /* verhindert lila „besuchter Link“ */
}


.z-logo{
  width:48px;
  height:48px;
  object-fit:contain;
}
.logo-text{
  display:flex;
  flex-direction:column;
}
.lt-main{
  font-weight:700;
  font-size:1.3rem;
}
.lt-sub{
  font-size:0.82rem;
  color:var(--muted);
}

nav{
  display:flex;
  gap:18px;
}
nav a{
  color:var(--text);
  padding:8px 14px;
  border-radius:10px;
  text-decoration:none;
}
nav a:hover{
  background:#1d1d25;
}

/* HERO */
.hero{
  padding:70px 0 40px;
  text-align:center;
}
.hero-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;              /* absolute Zentrierung */
  background: #1c1c21;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  width: fit-content;          /* sorgt für perfekte Mitte */
}

.hero-badge-dot{
  width:8px;
  height:8px;
  background:var(--accent);
  border-radius:50%;
}
.hero h1{font-size:3rem; margin-bottom:10px;}
.hero-text{max-width:700px;margin:auto;color:var(--muted);}

/* BUTTONS */
.buttons{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:26px;
}

.btn{
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:.15s;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  background:#ff5a50;
}

.btn-secondary{
  background:#1b1b21;
  color:#fff;
  border:1px solid #2a2a33;
}

.btn-secondary:hover{
  background:#25252d;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:20px;
  margin-top:50px;
}
.card{
  background:var(--glass);
  padding:22px;
  border:1px solid var(--border);
  border-radius:18px;
}
.card {
  background: var(--glass);
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;

  /* WICHTIG: Diese Zeile MUSS rein, sonst funktioniert Hover nicht */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* HOVER-EFFEKT GENAU HIER */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 24px rgba(255, 0, 0, 0.18);
  border-color: rgba(255, 60, 60, 0.45);
}

.card-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.card-icon{
  width:36px;
  height:36px;
  background:#1a1a22;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
}
.card h3{
  margin:0;
  font-size:1.2rem;
}
.card p{
  margin:0;
  color:var(--muted);
}

/* SEO SECTION */
.seo-section{
  text-align:center;
  margin:50px auto;
  max-width:900px;
}
.seo-section p{color:var(--muted);}

/* FOOTER */
footer{
  text-align:center;
  padding:30px 0;
  color:var(--muted);
}
footer a{color:var(--muted); text-decoration:none;}
footer a:hover{color:#fff;}
/* ======================================
   FORMULAR FELDER – MODERN & SAUBER
====================================== */

/* ======================================
   EINHEITLICHES FORMULAR DESIGN
   (100% kompatibel mit index.html)
====================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0 auto;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #2a2a33;
  background: #121217;
  color: var(--text);
  font-size: 1rem;
  transition: 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8d98;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #18181f;
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.25);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input[type="file"] {
  background: none;
  border: none;
  padding: 6px 0;
  color: var(--muted);
}

.submit-wrapper,
.contact-form button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form button {
  margin: 10px auto 0 auto;
  padding: 14px 26px;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.contact-form button:hover {
  background: #ff5c55;
  transform: translateY(-2px);
}
/* ===============================
   MOBILE OPTIMIZATION
   (Nur für Handy, Desktop bleibt unverändert!)
=============================== */

@media (max-width: 768px) {

  /* HEADER MOBILE */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  nav a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .z-logo {
    width: 42px;
    height: 42px;
  }

  .lt-main {
    font-size: 1.1rem;
  }

  /* HERO MOBILE */
  .hero {
    padding: 50px 0 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    padding: 0 10px;
    font-size: 0.95rem;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* CARDS MOBILE */
  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 18px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  /* SEO TEXT MOBILE */
  .seo-section {
    padding: 0 10px;
  }

  /* FORMULAR MOBILE */
  .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  /* FOOTER MOBILE */
  footer {
    font-size: 0.9rem;
    padding: 20px 0;
  }
}
.btn {
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #ff5c55;
  transform: translateY(-2px);
  box-shadow: 0px 6px 18px rgba(255, 90, 90, 0.25);
}

.btn-primary:active {
  transform: translateY(0px);
  box-shadow: 0px 2px 8px rgba(255, 90, 90, 0.15);
}

