body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif
}

.highlight {
  font-weight: bold;
  color: #ffffff; /* Blau oder eine andere Akzentfarbe */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Optionaler Glow-Effekt */
}

.highlights {
  font-weight: bold;
  color: #000000; /* Blau oder eine andere Akzentfarbe */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Optionaler Glow-Effekt */
}


/*=== Navigation Section ===*/
nav {
  background-color: #000000;
  padding: 1rem;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding-right: 40px;
  display: flex;
  justify-content: space-around;
  justify-content: right;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

nav ul li a:hover{
  text-decoration: underline;
  /*background-color: rgba(255, 255, 255, 0.042);*/
}

.nav-left {
  margin-right: auto; /* Links bleibt am Anfang */
  padding-bottom: 2px;
}

.active{
  text-decoration: underline;
}


/*=== Hero Section ===*/
.hero {
  text-align: center;
  color: white;
  padding: 5rem 2rem;
  /*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.249)), url("/Images/BodyBackground.jpg");*/
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Images/BodyBackground2w_short.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 530px;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  animation: slideInLeft 1.5s ease-in-out forwards;
  opacity: 0; /* Startwert für den Fade-Effekt */
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  animation: slideInRight 1.5s ease-in-out 0.5s forwards;
  opacity: 0; /* Startwert für den Fade-Effekt */
}

/* Keyframes für die Bewegung */
@keyframes slideInLeft {
  from {
    transform: translateX(-100px); /* Startposition links außerhalb des Bildschirms */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* Endposition */
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px); /* Startposition rechts außerhalb des Bildschirms */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* Endposition */
    opacity: 1;
  }
}


/*=== Info Card Section ===*/
.info-cards {
  background-color: #f9f9f9;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 4rem 2rem;
}

.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 30%;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-block;
  text-decoration: none;
  background-color: #007bff;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.card-link:hover {
  background-color: #0056b3;
}


/*=== Testimonials Section ===*/
.testimonials {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: white;
  margin: 0;
}

.testimonials h2 {
  color: black;
}

.testimonial {
  margin-bottom: 2rem;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #000;
}

.testimonial h4 {
  font-size: 1rem;
  color: #000000;
}


/*=== Footer Section ===*/
.footer {
  background-color: #050505;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  height: 50px;
}

.footer-content{
  max-width: 800px;
  margin: 0 auto;
}

.footer p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links li {
  display: inline;
}

.footer-links a {
  text-decoration: none;
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.social-media a {
  text-decoration: none;
  color: #aaa;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #fff;
}


/*=== About Page ===/*
/* Header Section */
.about-header {
  text-align: center;
  padding: 5rem 2rem;
  background-color: #f4f4f4;
  color: #333;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Images/Innovation_short.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.about-header p {
  font-size: 1.2rem;
  color: white;
}

/* About Content */
.about-content {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center; /* Text zentrieren */
  border-radius: 15px; /* Abgerundete Ecken für den Container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

.about-text {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center; /* Text und Bilder vertikal ausrichten */
  gap: 2rem; /* Abstand zwischen Bild und Text */
  text-align: left; /* Text ausrichten */
}

.about-text:nth-child(even) {
  flex-direction: row-reverse; /* Abwechselnde Text-Bild-Ausrichtung */
}

.about-text h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.about-content .highlight {
  color: #000000;
  font-weight: bold;
  text-decoration: dashed;
}

.about-content .cta-button {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.about-content .cta-button:hover {
  background-color: #0056b3;
}

.hidden {
  opacity: 0;
  transform: translateX(-50px); /* Startzustand (links) */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hidden.show {
  opacity: 1;
  transform: translateX(0); /* Endzustand */
}



/* Team Section */
.team-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  max-width: 200px;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1rem;
  color: #555;
}

/* Footer */
.footer {
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links li {
  display: inline;
}

.footer-links a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/*=== Login Page ===*/
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Images/BodyBackground2w.webp') no-repeat center;
  background-size: cover;
}

.login-form {
  width: 400px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.login-form h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.login-form .input-box {
  position: relative;
  margin-bottom: 20px;
  max-width: 350px;
}

.login-form .input-box input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: transparent;
  color: white;
  font-size: 1rem;
}

.login-form .input-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.login-form .input-box i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

.login-form .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.login-form .btn {
  width: 100%;
  padding: 10px 0;
  background: #007bff;
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form .btn:hover {
  background-color: #0056b3;
}

.login-form .register-link {
  text-align: center;
  margin-top: 10px;
}

.login-form .register-link a {
  color: #007bff;
  text-decoration: none;
}

.login-form .register-link a:hover {
  text-decoration: underline;
}

.remember-forgot a {
  color: blue;
}

.remember-forgot a:active{
  color: purple;
}

/* Entfernt den Standard-Fokusrahmen */
.login-form .input-box input:focus {
  outline: none; /* Entfernt die schwarze Umrandung */
  border: 1px solid #007bff; /* Optional: Füge stattdessen eine eigene Umrandung hinzu */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Optional: Füge einen leichten Glow hinzu */
}

/* Für Barrierefreiheit: Fokus für Tastaturnutzer hervorheben */
.login-form .input-box input:focus-visible {
  border: 2px solid #007bff;
}

/* Contact Page */
/* --- Fade-In Animation --- */

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Optional: Für ältere Browser Unterstützung hinzufügen */
@-webkit-keyframes fadeIn {
  from {
      opacity: 0;
      -webkit-transform: translateY(20px);
  }
  to {
      opacity: 1;
      -webkit-transform: translateY(0);
  }
}
/* --- Kontaktformular Wrapper --- */

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  min-height: 80vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Images/BodyBackground2w.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.contact-form {
  background-color: #00000054;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.144);
  width: 100%;
  max-width: 600px;

    /* Hinzugefügte Animations-Eigenschaften */
    opacity: 0; /* Initial transparent */
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s; /* Optional: Verzögerung */
    
    /* Für ältere Browser */
    -webkit-animation: fadeIn 1s ease-out forwards;
    -webkit-animation-delay: 0.3s;
}

.contact-form h1 {
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
  color: #ffffff;
}

/* --- Fehlermeldungen und Erfolgsmeldungen --- */

.error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
}

.success {
  background-color: #d4edda;
  color: #155724;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
}

/* --- Eingabefelder und Textarea --- */

.input-box {
  position: relative;
  margin-bottom: 20px;
  max-width: 550px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #dbdbdba1;
  background-color: #00000085;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  color: white;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #007bff;
  outline: none;
}

.input-box i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #007BFF;
  font-size: 20px;
}

.input-box textarea {
  resize: vertical;
  min-height: 100px;
  color: white;
}

/* --- Buttons --- */

.btn {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#btn_contact_formular {
  border-radius: 25px;
}

.btn:hover {
  background-color: #0056b3;
}

/* --- Responsives Design --- */

@media (max-width: 768px) {
  .info-cards {
    flex-direction: column; /* Karten untereinander anzeigen */
    gap: 1rem;
  }

  .card {
    width: 100%; /* Volle Breite nutzen */
  }
}

/* Services Content */
.services-content {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center; /* Text zentrieren */
  border-radius: 15px; /* Abgerundete Ecken für den Container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

.services-header {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  color: white;
  text-align: center; /* Text zentrieren */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Images/BodyBackground5_short.webp");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

.service-item {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center; /* Text und Bilder vertikal ausrichten */
  gap: 2rem; /* Abstand zwischen Inhalt */
  text-align: left; /* Text ausrichten */
  flex-direction: column; /* Elemente untereinander auf kleineren Bildschirmen */
}

.service-item div {
  max-width: 600px;
}

.service-item h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
}

.service-item p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.services-content .cta-button {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.services-content .cta-button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column; /* Elemente untereinander auf kleinen Bildschirmen */
  }
}

/* Stil für die Reset-Wrapper */
.reset-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: #f5f5f5;
  padding: 20px;
}

/* Stil für das Reset-Formular */
.reset-form {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

/* Überschrift des Formulars */
.reset-form h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333333;
  text-align: center;
}

/* Stil für die Eingabeboxen */
.reset-form .input-box {
  position: relative;
  margin-bottom: 20px;
}

.reset-form .input-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #cccccc;
  color: white;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.reset-form .input-box input::placeholder {
  color: white;
}

.reset-form .input-box input:focus {
  border-color: #66afe9;
  outline: none;
}

/* Stil für die Icons (optional, wenn du Icons verwendest) */
.reset-form .input-box i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #888888;
  font-size: 20px;
}

/* Stil für den Button */
.reset-form .btn {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.reset-form .btn:hover {
  background-color: #0056b3;
}

/* Stil für die Links */
.reset-form .login-link {
  text-align: center;
  margin-top: 15px;
}

.reset-form .login-link a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s;
}

.reset-form .login-link a:hover {
  color: #0056b3;
}

/* Responsive Anpassungen */
@media (max-width: 500px) {
  .reset-form {
      padding: 30px 20px;
  }

  .reset-form h1 {
      font-size: 20px;
  }

  .reset-form .btn {
      font-size: 14px;
  }
}

    /* Zusätzliche CSS für die Projekte-Sektion */
    /* Intro Section */
    .intro-section {
    padding-top: 30px;
    padding-bottom: 60px;
    margin-bottom: 50px;
    text-align: center;
    background: #fff;
    max-height: 200px;
}

.intro-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 10px auto;
  color: #555;
}

    
    .projects-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 60px 20px;
      background-color: #f9f9f9;
  }

  .projects-title {
      font-size: 32px;
      margin-bottom: 40px;
      color: #0b0b0b;
  }

  .project-container {
      position: relative;
      width: 100%;
      max-width: 1000px;
      height: 550px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 6px 10px rgba(0,0,0,0.1);
      background-color: #fff;
  }

  .project-slide {
      display: none;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transition: opacity 0.5s ease-in-out;
      text-decoration: none;
  }

  .project-slide.active {
      display: block;
      opacity: 1;
  }

  .project-slide.inactive {
      opacity: 0;
  }

  .project-image {
      width: 100%;
      height: 60%;
      object-fit: cover;
      border-bottom: 1px solid #ddd;
  }

  .project-description {
      padding: 10px;
      font-size: 18spx;
      color: #000000;
      height: 40%;
      overflow-y: auto;
  }

  .project-description p {
    padding-bottom: 30px;
}
  /* Navigation Pfeile */
  .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255,255,255,0.8);
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s;
  }

  .nav-arrow:hover {
      background-color: rgba(255,255,255,1);
  }

  .nav-arrow.left {
      left: 10px;
  }

  .nav-arrow.right {
      right: 10px;
  }

  .nav-arrow i {
      font-size: 20px;
      color: #333;
  }

  /* Responsive Anpassungen */
  @media (max-width: 900px) {
      .project-description {
          font-size: 16px;
      }
  }

  @media (max-width: 600px) {
      .projects-title {
          font-size: 28px;
      }

      .nav-arrow {
          width: 35px;
          height: 35px;
      }

      .nav-arrow i {
          font-size: 18px;
      }
  }

  /* Testimonials Section */
.testimonials-section {
  background: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: bold;
  color: #555;
}

/* Imprint Page */

.imprint-header {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  color: white;
  text-align: center; /* Text zentrieren */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Images/BodyBackground2w.webp");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  background-position: center 50%;
}
  
