@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.no{
    color: transparent;
}

.nondec{
  text-decoration: none;
}

.logo img {
    max-width: 100%;
  height: 100px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-left li a,
.nav-right li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.nav-left li a:hover,
.nav-right li a:hover {
  color: #9dc0dc;
}

.nav-right .btn {
  background: #9dc0dc;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-right .btn:hover {
  background: #9dc0dc;
  transform: scale(1.05);
}


/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(250, 248, 248, 0)), url('./img/background in logofarben.png') no-repeat center 99%/cover;
  padding: 300px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: -10%;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero-btn {
  background: #9dc0dc;
  border: none;
  padding: 15px 30px;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background: #92b2cd;
  transform: scale(1.05);
}

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

/* Options Section */
.options-container {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.options-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.option {
  background: #f9f9f9;
  width: 250px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.option:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.option img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* Partner Section */
.partner-container {
  padding: 40px 20px;
  background: #f4f7fa;
  text-align: center;
}

.partner {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.logos-container {
  overflow: hidden;
  margin: auto;
  max-width: 800px;
}

.logos {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  animation: scroll 20s linear infinite;
}

.logo {
  max-width: 120px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 1;
}

/* Die Logos bewegen sich kontinuierlich */
@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Service Section */
.service-container {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.service-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.service-container h4 {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service {
  background: #f9f9f9;
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.95rem;
  color: #555;
}

/* Video Section */
.video-section {
  padding: 60px 20px;
  background: #f4f7fa;
  text-align: center;
}

.video-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.video-item {
  max-width: 300px;
  text-align: center;
}

.video {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video:hover {
  transform: scale(1.05);
}

.video-description {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

/* Über uns Section */
.wir-section {
  padding: 60px 20px;
  background-color: #fff;
}

.wir-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.wir-text-container {
  flex: 1 1 500px;
  color: #000000;
}

.wir-text-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.wir-text-container p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.wir-buttons {
  display: flex;
  gap: 20px;
}

.wir-button {
  background: #8eadc6;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.wir-button:hover {
  background: #8eadc6;
  transform: scale(1.05);
}

.wir-image-container {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.wir-image-container img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
  }
  .nav-left, .nav-right {
    flex-direction: column;
    gap: 10px;
  }
  .services, .video-container {
    flex-direction: column;
  }
  .wir-container {
    flex-direction: column;
    text-align: center;
  }
}

.faq-container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq {
  text-align: left;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: solid transparent; /* Standardborder setzen */
  padding: 20px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.5s ease;
}

.faq-question:hover {
  background: #f1f1f1;
  border-color: #80a4ff4e;
  border-radius: 10px;
}

.icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  opacity: 0; /* Initial state: hidden */
  visibility: hidden; /* Ensure the content is not interactable */
}

.faq-answer a{
  display: inline-block;
  cursor: pointer;
  
}

.faq-item.active .faq-answer {
  padding: 15px;
  max-height: 1000px; /* Large enough value to accommodate content */
  opacity: 1; /* Fade in when active */
  visibility: visible; /* Make the content interactable */
}

.faq-item.active .icon {
  transform: rotate(45deg); /* Rotate icon */
}

.faq-item .icon {
  transition: transform 0.3s ease;
}
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: white;
}

/* CTA Box mit Farbverlauf */
.cta-box {
  background: linear-gradient(135deg, #80c6ff, #4a3aff);
  color: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 800px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Leichter Hover-Effekt für die Box */
.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Call-To-Action-Button */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  background: white;
  margin: 0 auto;
  color: #4a3aff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Icon neben dem Button */
.cta-icon {
  font-size: 1.2rem;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transition: left 0.4s ease-in-out;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Slide-Animation auf Hover */
.cta-button:hover::before {
  left: 100%;
}

.footer {
  background-color: #f1f1f1;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  text-align: left;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a i {
  font-size: 18px;
}

.footer-partners {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-partners img {
  max-width: 100%;
  height: 50px;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}


@media (max-width: 1024px) {
  /* Navigation */
  .navigation {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;  /* Zentriert die Navigation */
  }
  .nav-left, .nav-right {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  /* Header - verschwinden beim Scrollen */
  .header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    transition: transform 0.3s ease;
  }

  .header.hidden {
    transform: translateY(-100%);
  }

  .logo img {
    max-width: 80%;
    height: auto;
  }

  /* Hero Section */
  .hero {
    padding: 180px 20px;
    background-size: cover;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }

  /* Optionen Section */
  .options-container {
    padding: 40px 20px;
  }

  .options {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .option {
    width: 90%;
    max-width: 300px;
    text-align: center;
    margin-bottom: 15px;
  }

 h1 no{
  font-size: 10px;
 }


  .no{
    font-size: 10px;
  }

  .logo:hover {
    opacity: 1;
  }

  .logos {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    animation: scroll 20s linear infinite;
  }
  
  .logo {
    max-width: 120px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

/* Die Logos bewegen sich kontinuierlich */
@keyframes scroll {
  from {
    transform: translateX(-170%);
  }
  to {
    transform: translateX(200%);
  }
}

  /* Service Section */
  .services {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .service {
    width: 90%;
    max-width: 300px;
  }

  /* Video Section */
  .video-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .video-item {
    width: 90%;
    max-width: 320px;
  }

  .video {
    border-radius: 15px;
  }

  /* Über uns Section */
  .wir-container {
    flex-direction: column;
    text-align: center;
    gap: 1px;
  }

  .wir-text-container h2 {
    padding-right: 0;
    font-size: 2rem;
  }

  .wir-text-container p {
    padding-right: 0;
    font-size: 1rem;
  }

  .wir-image-container {
    padding-right: 0;
    margin-top: -150px;
    flex: 1 1 100%;
  }

  .wir-image-container img {
    max-width: 100%;
    width: auto;
  }

  /* FAQ Section */
  .faq-container {
    padding: 40px 20px;
  }

  .faq-item {
    margin-bottom: 15px;
  }

  .faq-question {
    font-size: 1.2rem;
  }

  /* Call-To-Action Section */
  .cta-section {
    padding: 60px 20px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .cta-box {
    background: linear-gradient(135deg, #80c6ff, #4a3aff);
    color: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 800px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .cta-box h2 {
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 20px;
  }

  .cta-box a{
    text-decoration: none;
  }

  .cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .cta-icon {
    font-size: 1.2rem;
  }

  /* Button Hover Animation */
  .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transition: left 0.4s ease-in-out;
  }

  .cta-button:hover::before {
    left: 100%;
  }

  /* Footer */
  .footer-column {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-partners {
    flex-direction: column;
    gap: 15px;
  }

  .footer-column ul li {
    margin-bottom: 5px;
  }
}

