@charset "UTF-8";

/* =====================================================
   IMPRESSUM – Clean / Professional (wie Konfigurator)
   - Inter (clean)
   - White + Black + neutral grey
   - kantig (keine Rundungen)
   - KEIN Schatten unter Header/Navbar
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* ---------- Basis / Hard reset für diese Seite ---------- */
html{
  background: #fff !important;
}

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  background-color: #fff !important;
  color: #111 !important;
  margin: 0;
  padding: 0;
  text-align: initial;
  overflow-x: hidden !important;
}

/* Main spacing wie Konfigurator */
main.impressum-main{
  max-width: 1320px;              /* gleiche Breite wie Konfigurator */
  margin: 28px auto;
  padding: 0 1.5rem;
  background: transparent;        /* kein Kasten */
}

/* Falls du oben wie beim Konfigurator Luft brauchst */
main.impressum-main{
  padding-top: 80px;              /* entspricht main {padding-top:80px} im config */
}

/* ---------- Hard kill: Schatten unter Header / Navbar (wie beim Konfigurator) ---------- */
header,
.navbar,
.navbar *,
.site-header,
.header,
#header,
#page,
#wrapper,
.wrapper,
.page-wrapper,
.main-content{
  box-shadow: none !important;
  filter: none !important;
}

header::before, header::after,
.navbar::before, .navbar::after,
#page::before, #page::after,
#wrapper::before, #wrapper::after,
.wrapper::before, .wrapper::after{
  content: none !important;
  display: none !important;
  box-shadow: none !important;
}

/* ---------- Headerbereich (Impressum) ---------- */
.impressum-header{
  text-align: left;               /* clean wie Konfigurator */
  margin: 0 0 18px;
}

.impressum-header h1{
  /* im Konfigurator ist h1 ausgeblendet – hier wollen wir es zeigen, aber clean */
  display: block !important;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 500;
  font-size: 0.95rem;
  color: #111;
  margin: 0 0 0.75rem;
  letter-spacing: 0.2px;
  text-transform: none;
}

/* keine Deko-Linie */
.impressum-header h1::after{
  content: none !important;
  display: none !important;
}

/* Introtext wie p im Konfigurator */
.impressum-header p{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  font-weight: 400;
  margin: 0;
  max-width: 820px;
}

/* ---------- Sections: wie .selection-area (kantig, weiß, dünner Rand) ---------- */
.impressum-section{
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border-radius: 0;
  padding: 18px;
  margin: 0 0 18px;
}

/* Überschrift wie h2 im Konfigurator */
.impressum-section h2{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 500;
  font-size: 0.95rem;
  color: #111;
  margin: 0 0 0.75rem;
  letter-spacing: 0.2px;

  /* kill "Elegance"-Border */
  border: none !important;
  padding: 0 !important;
}

/* Text wie p im Konfigurator */
.impressum-section p{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  font-weight: 400;
  margin: 0;
}

/* wenn mehrere Absätze in einer Section */
.impressum-section p + p{
  margin-top: 10px;
}

/* Links: neutral clean */
.impressum-section a{
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.35);
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 120ms ease, text-decoration-color 120ms ease;
}

.impressum-section a:hover{
  color: #000;
  text-decoration-color: rgba(0,0,0,0.6);
}

/* ---------- Responsive (wie Konfigurator mobile padding) ---------- */
@media (max-width: 900px){
  main.impressum-main{
    margin: 0 auto;
    padding: 70px 12px 0;     /* wie Konfigurator mobile main/padding */
    max-width: 100%;
  }

  .impressum-section{
    padding: 14px;
    margin-bottom: 12px;
  }

  .impressum-header h1{
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .impressum-header p{
    font-size: 0.95rem;
  }
}
