.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 36px;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.main-nav a:hover {
  color: #d4af37;
}

/* Call-to-Action Button */
.cta-button {
  background-color: #daa520;
  color: white;
  font-weight: bold;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #c8a535;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Standardmäßig Logo-Mobile ausblenden */
.logo-mobile {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle,
.mobile-nav {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    padding: 1rem 2rem;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav.show {
    display: flex;
  }

  .mobile-nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    color: black;
    text-align: left;
  }
}
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  background: white url('./img/waves-pattern.png') repeat;
  background-size: cover;
}

.logo img {
  height: 60px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000;

}

.cta {
  background-color: #d4af37;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  padding: 4rem 2rem;
  position: relative;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-description p {
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .social-icons {
    display: none !important;
  }
}

.start-btn {
  background-color: #d4af37;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}

.start-btn:hover {
  transform: scale(1.05);
  background-color: #c89f2c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-subline {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tech-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-stack img {
  height: 36px;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.tech-stack img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.start-btn {
  background-color: #d4af37;
  color: white;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}

.about-centered {
  background: transparent;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-centered h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-centered .highlight {
  color: #d4af37;
  font-weight: bold;
}

.highlight {
  color: #d4af37;
  font-weight: bold;
}

.divider {
  width: 60px;
  height: 3px;
  background: #d4af37;
  border: none;
  margin: 1rem auto 2rem;
}

/* === Anpassung: Grauen Hintergrund entfernen === */
.about-centered {
  background: none;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.social-icons a {
  font-size: 1.6rem;
  color: #000;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  color: #d4af37;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .social-icons-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 999;
  }
}

/* === NEU: Icons unter der About Section hübsch darstellen === */
.about-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 1rem 2rem;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 160px;
}

.about-icons img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(59%) saturate(592%) hue-rotate(9deg) brightness(98%) contrast(87%);
  height: 48px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.about-icons img:hover {
  transform: scale(1.1);
}

.about-icons p {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
  margin: 0;
}

.leistungen {
  padding: 4rem 2rem;
  text-align: center;
}

.leistungen h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #d4af37; /* gold */
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-section {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
  margin: 5rem auto;
  padding: 3rem 2rem;
  max-width: 1300px;
  position: relative;
  background-color: transparent;
}

.contact-left {
  flex: 1;
}

.contact-form {
  flex: 1;
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
}

.contact-form button {
  background-color: #d4af37;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.contact-form button:hover {
  background-color: #c09c2d;
}

/* Zeitstrahl */
.contact-timeline {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  padding: 1rem;
}

.contact-timeline .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.95rem;
  color: #222;
  max-width: 120px;
}

.contact-timeline .icon {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  color: #d4af37;
}

.contact-timeline .arrow {
  font-size: 1.3rem;
  color: #d4af37;
}
.footer {
  background-color: #f8f8f8; /* oder #f4f4f4 – je nachdem, was du bei den Cards nutzt */
  color: #222;
  padding: 2rem 1.5rem 1rem;
  font-size: 0.9rem;
}

.footer .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: black;
}
.footer-links a {
  color: #ccc;
  margin: 0 1rem;
  text-decoration: none;
}
.footer-links a:hover {
  color: #d4af37;
}
.footer-socials a {
  color: #ccc;
  margin-left: 1rem;
  font-size: 1.3rem;
}
.footer-socials a:hover {
  color: #d4af37;
}
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #333;
  margin-top: 1rem;
}
.footer-links a,
.footer-socials a {
  color: #444;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: #d4af37;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    margin-top: 1rem;
  }
}


@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .contact-text,
  .contact-form {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .contact-form form {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
  }

  .timeline-step {
    margin-bottom: 1.5rem;
  }

  .timeline img {
    width: 40px;
    height: 40px;
  }
}
/* Mobile Burger Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #000;
    font-size: 1.1rem;
  }

  .main-nav.show {
    display: flex;
  }

  .cta-button {
    display: none;
  }
}