* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "poppins", sans-serif;
  line-height: 1.6;
  color: #111;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #d371c3, #0c9ed8);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #d371c3, #0c9ed8);
  color: #fff;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}

.hero h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 24px;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #111;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.4s ease, color 0.5s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: white;
  color: #d371c3;
  transform: translateY(-3px);
  
  
}


/* Values Section */
.about {
  background: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.about-container h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 4rem;
}

.values {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  width: 320px;
  min-height: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
  cursor: default;
  user-select: none;
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #d371c3;
}

.value-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-card:hover p {
  opacity: 1;
}

/* About Us Section */
.about-us {
  background: #f9f9f9;
  padding: 6rem 2rem;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-us-image {
  flex: 1;
}

.about-us-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-us-text {
  flex: 1;
}

.about-us-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-us-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #444;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 1.5rem;
  color: #d371c3;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #fff;
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #ccc;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 0.5rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #d371c3;
  transform: translateY(-3px);
}

/* AGB Accordion */
.agb-accordion {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.agb-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #333;
  border-radius: 8px;
  transition: all 0.3s;
}

.agb-header:hover {
  background: #3a3a3a;
}

.agb-header h3 {
  font-size: 20px;
  color: #fff;
}

.agb-icon {
  font-size: 24px;
  transition: transform 0.3s;
}

.agb-icon.active {
  transform: rotate(180deg);
}

.agb-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 1rem;
}

.agb-content.active {
  max-height: 2000px;
  padding: 2rem 1rem;
}

.agb-content h4 {
  color: #d371c3;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.agb-content p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #888;
}

.footer-bottom a {
  color: #888;
  text-decoration: none;
  margin: 0 1rem;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .navbar {
      padding: 1rem 1.5rem;
  }

  .nav-links {
      gap: 1.5rem;
  }

  .hero h2 {
      font-size: 36px;
  }

  .about-us-container {
      flex-direction: column;
  }

  .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

 /* Schönes, professionelles Impressum-Layout */
.impressum-wrapper {
  max-width: 900px;
  margin: 100px auto 80px auto;
  padding: 0 20px;
}

.impressum-wrapper h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #d371c3, #0c9ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impressum-wrapper h2 {
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  color: #d371c3;
}

.impressum-wrapper p,
.impressum-wrapper a {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.impressum-wrapper a {
  text-decoration: underline;
}

.impressum-wrapper a:hover {
  color: #0c9ed8;
}

.impressum-wrapper h1 {
  text-align: center;
}


}