/* Datenschutz Page Specific Styles */

.datenschutz-hero {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.datenschutz-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.datenschutz-header {
  position: relative;
  z-index: 1;
}

.datenschutz-title {
  font-size: 4.5rem;
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: hsl(0, 0%, 100%);
  margin-bottom: 2rem;
}

.datenschutz-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: hsl(0, 0%, 75%);
  letter-spacing: 0.02em;
  line-height: 1.8;
  max-width: 700px;
}

@media (min-width: 1024px) {
  .datenschutz-title {
    font-size: 6.5rem;
  }
}

.datenschutz-content {
  position: relative;
  z-index: 1;
}

.datenschutz-section {
  margin-bottom: 5rem;
}

.datenschutz-section:last-child {
  margin-bottom: 0;
}

.datenschutz-section-title {
  font-size: 2.25rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  margin-bottom: 3rem;
  letter-spacing: -0.04em;
  position: relative;
  display: inline-block;
}

.datenschutz-section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, hsl(0, 0%, 100%), transparent);
  opacity: 0.6;
}

.datenschutz-block {
  margin-bottom: 4rem;
  padding-left: 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.datenschutz-block::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, transparent 100%);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.datenschutz-block:hover::before {
  height: 100%;
}

.datenschutz-block:hover {
  border-left-color: rgba(255, 255, 255, 0.15);
  padding-left: 3rem;
}

.datenschutz-block-title {
  font-size: 1.375rem;
  font-weight: 400;
  color: hsl(0, 0%, 95%);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.datenschutz-text {
  font-size: 1.0625rem;
  font-weight: 300;
  color: hsl(0, 0%, 60%);
  line-height: 1.95;
  margin-bottom: 0;
}

.datenschutz-text + .datenschutz-text {
  margin-top: 1.75rem;
}

.datenschutz-text p {
  margin: 0;
}

.datenschutz-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.datenschutz-text ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.datenschutz-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: hsl(0, 0%, 80%);
  font-weight: 300;
}

.datenschutz-link {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  font-weight: 400;
}

.datenschutz-link:hover {
  color: hsl(0, 0%, 100%);
  border-bottom-color: hsl(0, 0%, 100%);
}

.datenschutz-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 6rem 0;
  position: relative;
}

.datenschutz-divider::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.datenschutz-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.datenschutz-update {
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(0, 0%, 45%);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.datenschutz-container {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  .datenschutz-title {
    font-size: 2.5rem;
  }

  .datenschutz-subtitle {
    font-size: 1rem;
  }

  .datenschutz-block {
    padding-left: 1.5rem;
  }

  .datenschutz-block:hover {
    padding-left: 2rem;
  }

  .datenschutz-section-title {
    font-size: 1.75rem;
  }

  .datenschutz-block-title {
    font-size: 1.125rem;
  }

  .datenschutz-text {
    font-size: 1rem;
  }

  .datenschutz-container {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}
