/* Impressum Page Styles */
:root {
  --primary: #0077b6;
  --secondary: #00b4d8;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #fff;
  --bg-gray: #f8f9fa;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff !important;
}

/* Header Styles */
.impressum-header {
  background: var(--gradient);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impressum-header::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--bg-gray);
  transform: skewY(-3deg);
}

.header-title {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Main Content */
.impressum-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.content-section {
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.content-section:nth-child(2) {
  animation-delay: 0.2s;
}
.content-section:nth-child(3) {
  animation-delay: 0.4s;
}
.content-section:nth-child(4) {
  animation-delay: 0.6s;
}

.section-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.content-section p {
  color: black;
  margin-bottom: 15px;
}

/* Contact Info */
.contact-info {
  background: var(--bg-gray);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Back Button */
.back-to-home {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.back-to-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }

  .impressum-container {
    margin: -20px 15px 0;
    padding: 30px 15px;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #fff;
    --text-light: #ccc;
    --bg-light: #222;
    --bg-gray: #1a1a1a;
  }

  .impressum-header::after {
    background: var(--bg-gray);
  }

  .contact-info {
    background: rgba(255, 255, 255, 0.05);
  }
}

/* Print Styles */
@media print {
  .impressum-header {
    background: none;
    color: black;
    padding: 20px 0;
  }

  .impressum-header::after {
    display: none;
  }

  .impressum-container {
    box-shadow: none;
    margin: 0;
    padding: 20px;
  }

  .back-to-home {
    display: none;
  }
}
