@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 {
  padding: 300px 20px;
  color: #000000;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  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: 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;
  }
  .wir-container {
    flex-direction: column;
    text-align: center;
  }
}

.price-pricing {
  padding: 50px;
  max-width: 1200px;
  margin: auto;
  margin-top: -10%;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

h1, h2 {
  color: #333;
}

p {
  color: #666;
}

.price-category {
  margin: 30px;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 10px;
  text-align: center;
}

.price-category img {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 70%;
  border-radius: 10px;;
}


.price-contact {
  margin-top: 40px;
  padding: 20px;
  background: #ffde59;
  border-radius: 10px;
  text-align: center;
}

.price-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  color: white;
  background: #333;
  text-decoration: none;
  border-radius: 5px;
}

.price-button:hover {
  background:#555;
}

.pricesii{
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.146);
  background: #ffffff;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0);
}

.pricesi{
  list-style-type: none;
  padding: 0;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .header {
    padding: 10px 20px;
  }

  .logo img {
    height: 80px;
  }

  .navigation {
    gap: 15px;
  }

  .nav-left,
  .nav-right {
    gap: 15px;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 14px;
  }

  .hero {
    padding: 250px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .options-container {
    padding: 40px 20px;
  }

  .option {
    width: 220px;
  }

  .partner-container {
    padding: 30px 20px;
  }

  .service-container {
    padding: 50px 20px;
  }

  .service {
    width: 260px;
  }

  .video-section {
    padding: 50px 20px;
  }

  .wir-section {
    padding: 40px 20px;
  }

  .wir-container {
    flex-direction: column;
    text-align: center;
  }

  .wir-image-container img {
    max-width: 350px;
  }

  .price-pricing {
    padding: 30px;
  }

  .price-category {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
    text-align: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 10px;
  }

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

  .video-container {
    flex-direction: column;
  }
  .header{
    margin-left: 10%;
  }
  .price-pricing {
    padding: 10px;
    margin-top: 0;
    margin-left: -15%;
  }
  .price-contact{
    margin-left: 17%;
  }

  .price-category {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    margin-bottom: 20px;
  }

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

  .footer-partners {
    gap: 10px;
  }

  .footer-partners img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 200px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-btn {
    font-size: 0.9rem;
  }

  .service-container h2 {
    font-size: 2rem;
  }

  .service-container h4 {
    font-size: 1rem;
  }

  .service {
    width: 100%;
    max-width: 280px;
  }

  .video-container {
    flex-direction: column;
    gap: 20px;
  }

  .price-pricing{
    align-items: center;
  }


  .footer {
    text-align: center;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center; /* Zentriert alle Inhalte */
  }
  
  .footer-column {
    text-align: center;
    margin-bottom: 15px;
  }
}

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

  /* Header - verschwinden beim Scrollen */
  .header {
    margin-left: -1%;
    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;
  }
}