/* ============================
   DK Computerhilfe – Style.css
   ============================ */

 /*  :root {
  --bg: #0e1714;
  --bg-soft: #15211e;
  --bg-softer: #1b2a26;

  --accent: #33cc99;
  --accent-soft: rgba(51, 204, 153, 0.14);

  --text: #f2faf7;
  --text-muted: #9fb9b0;

  --border: rgba(255, 255, 255, 0.07);
}

 */





:root {
  /* Beige & Petrol – Light Mode (etwas dunkler + mehr Kontrast) */
  --bg: #e9e2d7;          /* leicht dunkleres Beige */
  --bg-soft: #e1d7c9;     /* Karten-Hintergrund */
  --bg-softer: #d8ccb9;   /* dunklerer Sektionenbereich */

  --accent: #0097c5;      /* Petrol */
  --accent-soft: rgba(0, 0, 0, 0.15);

 --text: #0f1317;        /* statt #1d242c – stärker, klarer, professionell */
 --text-muted: #48523e;  /* statt #505a64 – besser lesbar auf Beige */


  --border: #c6b8a7;      /* deutlichere, aber immer noch weiche Grenze */
  --text-on-accent: #051018;

  --radius: 1rem;
  --transition: 0.2s ease;
}






/*
:root {
  --bg: #f5efe6;
  --bg-soft: #efe7dc;
  --bg-softer: #e4d8c9;
  --accent: #00c4e6;
  --accent-soft: #7fe6f7;
  --text: #1f2933;
  --text-muted: #4b5563;
  --border: #d9cdbb;
  --text-on-accent: #0b1f27;

  --radius: 1rem;
  --transition: 0.2s ease;
}

/* Dark Mode: Oberschreibt nur die Variablen */
body.dark-mode {
  --bg: #131a21;
  --bg-soft: hwb(210 11% 82%);
  --bg-softer: #0d141b;
  --accent: #00c4e6;
  --accent-soft: #4ddeef;
  --text: #f5efe6;
  --text-muted: #cbd2d9;
  --border: #22303c;
  --text-on-accent: #0b1f27;
}

/* GLOBAL */

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, var(--bg-soft), var(--bg-softer));
  color: var(--text);
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.page section p,
.page section li {
  font-size: 1rem;
  line-height: 1.6;
}

/* HEADER NAV */

header {
  position: sticky;
  top: 0;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

/* Header in Dark Mode */
body.dark-mode header {
  background: rgba(19, 26, 33, 0.9);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: 100px;
  height: auto;
}

.brand-text {
  margin-left: 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-text strong {
  display: block;
  font-size: 0.95rem;
}

/*.brand-text span {
  /* color: var(--accent-soft);
}

*/

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 1rem;
}

/*
.nav-links a:hover {
  /* color: var(--accent-soft); 
}
  */

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-cta .btn {
  min-width: 130px;
}

/* BUTTONS */

.btn {
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(0, 196, 230, 0.12);
}
.btn-whatsapp {
  background: #25d366;
  color: #0b1f27;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}


.btn-pill-soft {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--accent);
  font-size: 0.8rem;
}

/* Dark/Light Toggle Button */

/* Theme Switch */

.theme-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.theme-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-switch .switch-slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 999px;
  transition: var(--transition);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.theme-switch .switch-slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.theme-switch input:checked + .switch-slider {
  background: var(--accent);
}

.theme-switch input:checked + .switch-slider::after {
  transform: translateX(20px);
  background: var(--text-on-accent);
}

/* MOBILE TOGGLE */

.mobile-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--accent);
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span {
  font-size: 1.2rem;
}

/* PAGE BASE */

.page {
  max-width: 1100px;
  margin: auto;
  padding: 2.5rem 1.2rem 3rem;
}

.page section {
  margin-bottom: 3rem;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  border-radius: var(--radius);
}

.hero-left {
  background: radial-gradient(circle at top left, rgba(0,224,255,0.15), var(--bg-soft));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.hero-title {
  margin-top: 0.4rem;
  font-size: 2rem;
}

.hero-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-bullets {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-bullet span {
  /* color: var(--accent-soft); */
  margin-right: 0.3rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-note {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* HERO Right Cards */

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--bg-soft);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.card-compact {
  background: var(--bg-softer);
  padding: 1rem;
  border-radius: var(--radius);
}

.card-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  /* color: var(--accent-soft); */
  margin-bottom: 0.3rem;
}

.card-title {
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-bullets {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill-row {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.pill {
  font-size: 0.8rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* SECTIONS */

.section-header {
  margin-bottom: 2.2rem;
}

.section-label {
  text-transform: uppercase;
  font-size: 1.2rem;
  /* color: var(--accent-soft); */
  letter-spacing: 0.1rem;
}

.section-title {
  margin-top: 0.3rem;
}

.section-subtitle {
  margin-top: 0.4rem;
  color: var(--text-muted);
  max-width: 46rem;
}

/* SERVICE CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--bg-soft);
  padding: 1.3rem;
  border-radius: var(--radius);
  display: grid;
  gap: 0.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.service-subline {
  font-size: 0.95rem;
  /* color: var(--accent-soft); */
  margin-top: 0;
}

.service-text {
  font-size: 1rem;
  color: var(--text-muted);
}

.service-list {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
  font-size: 1rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.2rem;
}

.service-footer {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* DIGITALISIERUNG */

.digital-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.6rem;
}

.digital-highlight {
  background: radial-gradient(circle at top left, rgba(0,224,255,0.15), var(--bg-soft));
  padding: 1.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.digital-card {
  background: var(--bg-soft);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.digital-card + .digital-card {
  margin-top: 1.2rem;
}

/* ABLAUF, PREISE, ABOUT, FAQ, KONTAKT
   (nur Grundgrids, damit es nicht hässlich zusammenfällt) */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.step-card {
  background: var(--bg-soft);
  padding: 0.9rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);

}

.step-number {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}

.pricing-main {
  background: var(--bg-soft);
  padding: 1.1rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.pricing-side {
  display: grid;
  gap: 0.8rem;
}

.pricing-box {
  background: var(--bg-soft);
  padding: 0.9rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.about-card {
  background: var(--bg-soft);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-soft);
  padding: 0.9rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
  column-gap: 3rem;
  row-gap: 2rem;
  align-items: flex-start;
}

/* FORM */

form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

label {
  font-size: 0.85rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-size: 0.95rem;
}

body.dark-mode form input,
body.dark-mode form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Button im Formular etwas Luft nach oben geben */
form .btn-primary {
  align-self: flex-start;
  margin-top: 0.2rem;
}

/* Hinweistext unter dem Formular und im Kontakt-Aside */
.contact-note {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* CONTACT INFO */

.contact-info {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  /* color: var(--accent-soft); */
}
.contact-block {
  margin-bottom: 1.2rem;
}

.contact-value {
  margin-top: 0.2rem;
}

.contact-value a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.contact-value a:hover {
  color: var(--accent);
}

.contact-small {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 26rem;
}

/* FOOTER */

footer {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
}

/* MOBILE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .digital-row {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-layout,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-right.open {
    align-items: center;
  }

  .nav-right.open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    top: 3.2rem;
    right: 0;
    padding: 1rem;
    width: min(280px, 90vw);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10;
  }

  .nav-right.open .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: center;
  }

  .nav-right.open .nav-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .nav-right.open .nav-cta .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* Rechtliche Seiten: Impressum & Datenschutz */

.legal-page {
  padding: clamp(5rem, 9vh, 6.5rem) 1.5rem 3rem;
  background: radial-gradient(circle at 0 0, var(--bg-soft), var(--bg));
  min-height: calc(100vh - 120px); /* so dass es nicht „klebt“, Footer bleibt unten */
}

.legal-wrapper {
  max-width: 60rem;
  margin: 0 auto;
  padding: 2rem 1.8rem;
  border-radius: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.legal-wrapper h1 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

.legal-wrapper h2 {
  font-size: 1.25rem;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.legal-wrapper p,
.legal-wrapper li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-wrapper a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-wrapper a:hover {
  text-decoration: none;
}

/* etwas Luft nach oben/unten auf kleineren Screens */
@media (max-width: 768px) {
  .legal-page {
    padding-top: 4.5rem;
  }

  .legal-wrapper {
    padding: 1.6rem 1.3rem;
    border-radius: 1rem;
  }
}
