/* Additional styles for impressum page */
.dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.impressum-container {
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--shadow);
  color: var(--text-primary);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.impressum-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--hover-shadow);
}

.impressum-container h1 {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.impressum-container h1::before {
  content: "\f0c0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
}

.impressum-container h2 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.impressum-container p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.impressum-container p br {
  margin-bottom: 0.3rem;
}

.back-button {
  position: fixed;
  top: 2rem;
  left: 2rem;
  background-color: var(--accent-color);
  color: var(--text-secondary);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
  z-index: 1001;
  text-decoration: none;
}

.back-button:hover {
  transform: scale(1.1);
  background-color: var(--accent-hover);
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .dashboard {
    padding: 1rem;
    min-height: calc(100vh - 2rem);
  }

  .impressum-container {
    padding: 1.5rem;
  }

  .impressum-container h1 {
    font-size: 2rem;
  }

  .impressum-container h2 {
    font-size: 1.5rem;
  }

  .impressum-container p {
    font-size: 1rem;
  }

  .back-button {
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .dashboard {
    padding: 0.5rem;
    min-height: calc(100vh - 1rem);
  }

  .impressum-container {
    padding: 1rem;
  }

  .back-button {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
