/* ===========================
   LEGAL / CONTENT PAGES
   =========================== */

body.legal-page {
  background: #0f0f0f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.legal-page main {
  flex: 1;
}

.legal-header {
  padding: 40px 20px 20px;
  text-align: center;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 300;
  color: #fff;
}

body.legal-page .main-nav {
  margin-top: 0 !important;
  position: relative;
  z-index: 10;
  background: #000;
  backdrop-filter: none;
}

body.legal-page main.content-page {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  background: transparent;
  backdrop-filter: none;
}

.content-page {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 35px 30px 45px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.content-card h1 {
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 300;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.content-card h2 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: #f0f0f0;
  font-weight: 500;
}

.content-card p {
  line-height: 1.7;
  margin: 4px 0 12px;
  color: #cccccc;
}

.content-card a {
  color: #80bfff;
  text-decoration: none;
}

.content-card a:hover {
  text-decoration: underline;
}

.content-small {
  font-size: 13px;
  color: #999999;
  margin-top: 20px;
}

/* Kontakt */
.contact-box {
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: #a8ff6154;
}

.contact-content {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.85rem;
  color: #999;
}

.contact-link {
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
}

.contact-link:hover {
  color: #44e38f;
}

/* Mobile */
@media (max-width: 700px) {
  .content-page {
    margin: 30px auto;
    padding: 0 14px;
  }

  .content-card {
    padding: 24px 18px 30px;
    border-radius: 12px;
  }

  .content-card h1 {
    font-size: 1.5rem;
  }

  .content-card h2 {
    font-size: 1.05rem;
  }

  .content-card p {
    font-size: 0.98rem;
  }

  .legal-header {
    padding: 28px 14px 16px;
  }

  .legal-header h1 {
    font-size: 1.4rem;
  }

  body.legal-page main.content-page {
    margin-top: 20px;
  }
}