body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url("ThryoBase.png") no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  padding-top: 140px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);

  /* Dynamischer Hintergrund mit Transparenz */
  background: linear-gradient(to right, rgba(0, 255, 224, 0.15), rgba(0, 255, 224, 0.05));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 255, 224, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo links, Navi rechts */
  width: 100%;
}

nav {
  display: flex;
  gap: 2rem;
  margin-right: 3rem;
}

nav a {
  color: #00ffe0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

.logo {
  height: 120px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 6px #00ffe0);
  object-fit: contain;

}

.logo:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 0 12px #00ffe0) brightness(1.2);
  cursor: pointer;
}

    section {
      scroll-margin-top: 100px; /* Höhe des fixierten Headers */
      padding: 4rem 2rem;
      border-bottom: 1px solid #333;
    }

section:last-of-type {
  margin-bottom: 40px;
}

    .hero {
      background: url('dein-bild.jpg') center/cover no-repeat;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      background: rgba(0, 0, 0, 0.6);
      padding: 1rem 2rem;
      border-radius: 8px;
    }

.mission-section {
  background-color: #0f1114; /* dunkler, moderner Hintergrund */
  color: #f4f4f4;            /* kontrastreiche, helle Schrift */
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  border-top: 1px solid #2a2d31;
  border-bottom: 1px solid #2a2d31;
}

.mission-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ffe0; /* futuristisches Akzentgrün */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mission-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #d0d0d0;
}

.mission-section strong {
  color: #ffffff;
  font-weight: 600;
}

/* SVG-Trennung */
.section-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* Portfolio-Sektion */
.portfolio-section {
  background-color: #14171a;
  color: #e0e0e0;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.portfolio-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00bfff;
  text-transform: uppercase;
}

.portfolio-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #c0c0c0;
}

/* Grid-Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background-color: #1c1f23;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #2a2d31;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card h3 {
  color: #00ffe0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-card p {
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.6;
}

.karriere-section {
  background-color: #0f1114;
  color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  border-top: 1px solid #2a2d31;
}

.karriere-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ff99; /* frisches Grün für Zukunft & Wachstum */
  text-transform: uppercase;
}

.karriere-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #d0d0d0;
}

.karriere-section strong {
  color: #ffffff;
  font-weight: 600;
}

/* Grid für Karrierebereiche */
.karriere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.karriere-card {
  background-color: #1c1f23;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #2a2d31;
  transition: transform 0.3s ease;
}

.karriere-card:hover {
  transform: translateY(-5px);
}

.karriere-card h3 {
  color: #00ffe0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.karriere-card p {
  color: #c0c0c0;
  font-size: 1rem;
  line-height: 1.6;
}


.kontakt-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ffcc;
  text-transform: uppercase;
}

.kontakt-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #c0c0c0;
}

.kontakt-info {
  margin-top: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.kontakt-info a {
  color: #00ffe0;
  text-decoration: none;
}

.kontakt-info a:hover {
  text-decoration: underline;
}

.product-grid.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.second-row-centered {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.mission-section,
.portfolio-section,
.karriere-section,
.kontakt-section {
  background-color: rgba(15, 17, 20, 0.85); /* Dunkles Grau mit 85% Deckkraft */
  color: #f0f0f0; /* Helles Grau für gute Lesbarkeit */
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px); /* Optional: Weicher Hintergrundeffekt */
}

.kontakt-section {
  padding: 3rem 20px 320px !important;
  text-align: center;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 20px 40px 20px;
}

footer {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #e0e0e0;
  text-align: center;
  padding: 0.5rem;
  z-index: 999;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a {
  color: #b0c4de;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
  color: #ffffff; /* Weiß beim Hover für maximalen Kontrast */
  text-decoration: underline;
}

.legal-section h4 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ffe0; /* futuristisches Akzentgrün */
  letter-spacing: 1px;
  text-transform: uppercase;
}
