/* -----------------------------------------------------
   GLOBAL
----------------------------------------------------- */
:root {
  --color-primary: #0a2c82;
  --color-secondary: #1449c4;
  --color-light: #f5f7fa;
  --color-dark: #222;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* -----------------------------------------------------
   NAVIGATION
----------------------------------------------------- */
.site-header {
  background: white;
  padding: 10px 30px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.nav-logo-left img,
.nav-logo-right img {
  width: 80px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-lang {
  font-size: 14px;
}

.nav-lang a,
.nav-lang span {
  color: #333;
  text-decoration: none;
}

.nav-lang-active {
  font-weight: bold;
  color: var(--color-primary);
}

/* -----------------------------------------------------
   HERO – FIXED (Bessere Lesbarkeit)
----------------------------------------------------- */
.hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(0, 20, 60, 0.65),
      rgba(0, 20, 60, 0.65)
  );
}

.hero-content {
  position: relative;
  color: white;
  max-width: 780px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* GENERELLE BUTTON BASIS */
.hero-buttons a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

/* BLAUER BUTTON (Links & Rechts) */
.btn-primary,
.btn-secondary {
    background: #0A2A6A;    /* dunkelblau */
    color: #fff;
    border: none;
}

.btn-primary:hover,
.btn-secondary:hover {
    background: #083068;
    transform: translateY(-2px);
}

/* WEISSER BUTTON (Mitte) */
.btn-ghost {
    background: #ffffff;
    color: #0A2A6A;         /* blau */
    border: 2px solid #0A2A6A;
}

.btn-ghost:hover {
    background: #0A2A6A;
    color: #ffffff;
    transform: translateY(-2px);
}
/* -----------------------------------------------------
   SECTIONS
----------------------------------------------------- */
.section {
  padding: 80px 20px;
}

.section-alt {
  background: var(--color-light);
}

.container {
  max-width: 1180px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.section-subtitle {
  margin-bottom: 40px;
  color: #555;
}

/* -----------------------------------------------------
   TWO COLUMN LAYOUT
----------------------------------------------------- */
.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* -----------------------------------------------------
   PILL BADGES
----------------------------------------------------- */
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  background: var(--color-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* -----------------------------------------------------
   FEATURE CARDS (DIENSTLEISTUNGEN)
----------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-badge {
  background: var(--color-primary);
  color: white;
  padding: 5px 10px;
  border-radius: var(--radius);
  font-size: 14px;
}

/* -----------------------------------------------------
   TRAINING GRID
----------------------------------------------------- */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.training-card {
  background: white;
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.training-card img {
  height: 140px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* -----------------------------------------------------
   TIMELINE – HORIZONTAL
----------------------------------------------------- */
.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 50px;
}

.th-step {
  text-align: center;
  width: 18%;
}

.th-icon {
  width: 55px;
  height: 55px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  font-size: 22px;
}

/* -----------------------------------------------------
   CONTACT CARDS
----------------------------------------------------- */
.contact-cards {
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-card {
  background: white;
  padding: 25px 35px;
  border-radius: var(--radius);
  width: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-card h3 {
  color: var(--color-primary);
}

/* -----------------------------------------------------
   TALENTPOOL (NEU)
----------------------------------------------------- */
.talent-hero {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 40px;
}

.talent-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.talent-category {
  padding: 8px 14px;
  background: var(--color-primary);
  color: white;
  border-radius: 20px;
  font-size: 14px;
}

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

.talent-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.talent-card img {
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: bold;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.site-footer {
  background: #f0f2f7;
  padding: 25px;
  text-align: center;
  margin-top: 40px;
}
