:root {
            --primary: #fe1515cb;
            --secondary: #000000;
            --dark: #1a1919;
            --light: #f8f9fa;
            --gray: #e8eaed;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--dark);
              background: #ffffff;
            line-height: 1.6;
        }
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            height: 80px;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-img {
            height: 100px;
            margin-right: 30px;
            width: auto;
            animation: slideInFromLeft 1.2s ease-out forwards;
        }
        .logo-text {
            font-size: 1.99rem;
            font-weight: 700;
            color: #000000;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 20px;
            transition: color 0.2s;
        }
        nav a:hover {
            color: var(--primary);
        }
        .hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: calc(100vh - 80px);
}
        .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}
              
        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .hero-text p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }



        .hero-arrows {
            display: none;
        }

        .hero-arrows-inline {
            position: absolute;
            bottom: 30px;
            left: 90%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
            z-index: 10;
        }

        .hero-arrows-inline button {
            background: none;
            border: none;
            color: white;
            font-size: 40px;
            cursor: pointer;
            padding: 10px;
            transition: color 0.3s;
        }

        .hero-arrows-inline button:hover {
            color: var(--primary);
        }

        .button {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s;
        }
        .button:hover {
            background: #e9dede;
            color: #000;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1rem;
        }
              .about-section {
            background: var(--dark);
            color: white;
            padding: 60px 5%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            flex-wrap: nowrap;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-section img {
            width: 100%;
            max-width: 420px;
            border-radius: 10px;
            object-fit: cover;
            margin-left: 0;
        }

        .about-section .text {
            max-width: 700px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 2rem;
            height: 100%;
        }

        .about-section .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .about-section .badge {
            border: 1px solid #fff;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
        }

        .about-link {
            align-self: flex-end;
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            margin-top: auto;
        }

        .about-link span {
            color: var(--primary);
            margin-left: 5px;
            transition: margin-left 0.2s;
        }

        .about-link:hover span {
            margin-left: 10px;
        }
        .projects {
            background: var(--white);
            padding: 1rem 1rem;
        }
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        .project {
            background: var(--dark);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        .project:hover {
            transform: scale(1.03);
        }
        .project img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .project-info {
            padding: 1.5rem;
            color: var(--light);
            
        }
                    .project-grid a {
            text-decoration: none;
            color: inherit;
            display: block;
            }

            .project-grid a:hover .project {
            transform: scale(1.03);
            }

            .project-grid a .project-info h3 {
            color: inherit; /* Verhindert blaue Farbe bei h3 im Link */
            }





        .about {
            text-align: center;
            padding: 2rem 1rem;
        }
        .contact {
            background: var(--primary);
            color: #fff;
            text-align: center;
            padding: 4rem 1rem;
        }
        .contact h2 {
            margin-bottom: 1.5rem;
        }
        footer {
            background: var(--dark);
            color: #fff;
            text-align: center;
            padding: 2rem 1rem;
            bottom: 0;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1rem 0;
        }
        .footer-links a {
            color: #fff;
            text-decoration: none;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
                text-align: center;
            }
            nav ul {
                display: none;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
        }


    
        .service-card {
  background: var(--dark);
  color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.service-card img {
  width: 100%;
  max-width: 400px;
  height: 350px;
  object-fit: cover;
  flex: 1 1 40%;
}
.service-info {
  flex: 1 1 60%;
  padding: 2rem;
}
.service-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light);
}
.service-info p {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .service-card { flex-direction: column; }
  .service-card img { max-width: 100%; }
}

.fixed-logo {
  position: absolute;
  bottom: 20px;       /* Abstand zum unteren Rand */
  left: 20px;         /* Abstand zum linken Rand */
  z-index: 900; /* → niedriger als header (z-index: 1000), aber höher als hero */
  pointer-events: none; /* verhindert, dass das Logo Klicks blockiert */
}

.fixed-logo img {
  width: 150px;       /* Größe des Logos anpassen */
  height: auto;
  object-fit: contain;
  
}

.menu-toggle {
  display: none; /* Standard: nicht anzeigen */
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
}

  .menu-icon {
      display: none;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      width: 30px;
      height: 25px;
      gap: 5px;
    }

    .menu-icon div {
      height: 4px;
      background: #000;
      border-radius: 2px;
    }

    .mobile-dropdown-toggle {
      font-weight: 600;
      padding: 8px 16px;
      cursor: pointer;
      color: black;
    }

   .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px; /* Einrücken bleibt */
}

.mobile-submenu.show {
  max-height: 1000px; /* groß genug, damit alles reinpasst */
}

.mobile-submenu a {
  display: block;
  padding: 8px 0;
  color: black;
  text-decoration: none;
}
.mobile-submenu a:hover {
  background-color: #f2f2f2;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none; /* Desktop-Navigation auf klein ausblenden */
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.logo-text {
  font-size: 1.99rem;
  font-weight: 700;
  color: #000000;
  animation: slideInFromLeft 1s ease-out forwards;
}

.project-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.image-lightbox.show {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 20px;
  cursor: pointer;
}
.lightbox-frame {
  position: relative;
  z-index: 1;
  width: min(95vw, 1200px);
  height: min(90vh, 800px);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}



@media (max-width: 900px) {
  .header-container {
    padding: 0.75rem 4%;
    height: auto;
  }

  .logo-text {
    font-size: 1.5rem;
    text-align: left;
  }

  .hero {
    height: calc(100vh - 80px);
  }

  .hero-text {
    width: 90%;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .hero-arrows-inline {
    left: auto;
    right: 6%;
    bottom: 20px;
    transform: none;
  }

  .about-section {
    padding: 40px 6%;
    gap: 2rem;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .service-info {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .header-container {
    padding: 0.6rem 0.6rem 0.6rem 5%;
    position: relative;
  }

  .logo-text {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .logo-line {
    display: block;
  }

  .menu-toggle {
    font-size: 2.2rem;
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }

  .hero {
    height: calc(100vh - 70px);
  }

  .hero-text {
    width: 92%;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .hero-text p {
    font-size: 0.98rem;
  }

  .button {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-arrows-inline button {
    font-size: 34px;
  }

  .fixed-logo img {
    width: 110px;
  }

  .about-section img {
    max-width: 100%;
  }

  .about-section .badge {
    font-size: 0.9rem;
  }

  .container {
    padding: 3rem 1rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project img {
    height: 190px;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .service-card img {
    height: 240px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.dropdown-mobile {
  display: none;
}

@media (max-width: 768px) {
  .dropdown-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .dropdown-mobile.show {
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.4rem;
    cursor: pointer;
  }

  .dropdown-mobile a {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
  }

  .dropdown-mobile a:hover {
    color: var(--primary);
  }
}





