@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;
}

.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: -12%;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

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

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

.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;
  text-align: center;
}

.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;
  margin-top: 5%;
}

.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: linear-gradient(135deg, #add3f1 0%, #4d708d 100%);
}

.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: #ffffff;
}

.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;
  }
  .video-title{
    font-size: 35px;
  }
  .video{
    margin-top: 5%;
  }
  .wir-container {
    flex-direction: column;
    text-align: center;
  }
  .drohn-title{
  font-size: 50px;
  }
}
.drohn-title{
  text-align: center;
  font-size: 2.5rem;
}

.dreispaltige-tabelle {
  width: 80%;
  margin-left: 10%;
  text-align: center;
  border-collapse: separate; /* Wichtiger Schritt, um border-radius zu ermöglichen */
  border-spacing: 0; /* Entfernt jeglichen Abstand zwischen Zellen */
  border-radius: 15px; /* Runde Ecken für die gesamte Tabelle */
  overflow: hidden; /* Verhindert, dass sich der Inhalt über die runden Ecken hinaus erstreckt */
  border: 2px;
}

.dreispaltige-tabelle th,
.dreispaltige-tabelle td {
  padding: 10px; /* Platz zwischen den Zellen */
  text-align: center;
}

.dreispaltige-tabelle th {
  background-color: #ffffff;
  font-weight: bold;
}

.dreispaltige-tabelle td {
  background-color: #fff;
}

.dreispaltige-tabelle th, .dreispaltige-tabelle td {
  border: none; /* Keine sichtbaren Linien */
}

.dreispaltige-tabelle img {
  width: 80px;
  height: 80px;
  margin-bottom: -5px;
}

/* Import Google Font */
@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;
  overflow-x: hidden;
}

/* Header mit Scroll-Effekt */
.header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

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

.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-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;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-out;
}

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

.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;
}

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


@media (max-width: 768px) {
  .header {
    text-align: center;
    padding: 10px 20px;
  }
  .hero {
    padding: 200px 15px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 10px 20px;
  }
}

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

@media (max-width: 768px) {
  /* 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;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 8px 15px;
  }
  .hero {
    padding: 180px 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .drohn-title{
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
      display: block;
  }
  thead {
      display: none;
  }
  tr {
      margin-bottom: 10px;
      border: 1px solid #ccc;
      padding: 10px;
      background: #fff;
  }
  td {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px;
      border-bottom: 1px solid #ddd;
  }
  td:last-child {
      border-bottom: none;
  }
  td::before {
      content: attr(data-label);
      font-weight: bold;
      text-align: center;
      width: 100%;
      margin-bottom: 5px;
  }
}


@media (max-width: 768px) {

    /* Footer */
    .footer-column {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .footer-partners {
      flex-direction: column;
      gap: 15px;
    }
  
    .footer-column ul li {
      margin-bottom: 5px;
    }
  
  }  

  .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;
  }


