/* ============================================================
   EDEL ENTRÜMPELUNG — datenschutz.css  |  Dark Theme
   (setzt index.css voraus)
   ============================================================ */


/* ============================================================
   HERO SLIM
   ============================================================ */
.ds-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
}

.ds-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  padding: 6rem 1rem 2.5rem;
  text-align: center;
  margin-inline: auto;
}

.ds-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}


/* ============================================================
   SEKTION
   ============================================================ */
.ds-section { background: var(--bg-lift); }

/* Zwei-Spalten-Layout: Sidebar + Inhalt */
.ds-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin-inline: auto;
}


/* ============================================================
   SIDEBAR NAV
   ============================================================ */
.ds-nav {
  position: sticky;
  top: 5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
}

.ds-nav-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding-left: 0.3rem;
}

.ds-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ds-nav a {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}
.ds-nav a:hover {
  background: var(--bg-raise);
  color: var(--text);
}


/* ============================================================
   INHALT BLOCKS
   ============================================================ */
.ds-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ds-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  scroll-margin-top: 5rem;
  transition: border-color 0.2s;
}
.ds-block:hover { border-color: var(--line-strong); }

.ds-block-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.ds-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: var(--accent);
  flex-shrink: 0;
}

.ds-block h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.ds-block p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 0.6rem;
}
.ds-block p:last-child { margin-bottom: 0; }

.ds-block strong { color: rgba(255,255,255,0.75); }

.ds-block a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.ds-block a:hover { text-decoration: underline; }

/* Stand */
.ds-stand {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.22);
  margin-top: 0.5rem;
  text-align: right;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 840px) {
  .ds-layout { grid-template-columns: 1fr; }
  .ds-nav    { position: static; }
}

@media (max-width: 768px) {
  .ds-hero         { min-height: 30vh; }
  .ds-hero-content { padding-top: 4.5rem; }
}
