/* ===================== */
/* RESET */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #000;
}

/* ===================== */
/* VARIABLE FÜR HINTERGRUNDBILD POSITION */
/* ===================== */
:root {
  --hero-bg-pos: 50%;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 40px 20px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-bg-pos) center;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(8, 42, 90, 0.85),
    rgba(8, 42, 90, 0.75)
  );
  z-index: 1;
}

.hero-logo {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  margin-bottom: 40px;
  max-width: 1000px;
}

.desktop-logo {
  display: inline-block;
}

.mobile-logo {
  display: none;
}

/* KONTAKTINFOS */
.hero-contact {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;

  color: #fff;
  font-size: 0.85rem;
  max-width: 1100px;
}

.hero-contact .contact-item {
  min-width: 150px;
}

.hero-contact .contact-item h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 550;
}

.hero-contact .contact-item p {
  font-size: 0.85rem;
}

.hero-contact a {
  color: #fff;
  text-decoration: none;
}

.hero-contact a:hover {
  text-decoration: underline;
}

/* TERMIN */
.termin {
  position: relative;
  z-index: 2;

  margin-top: 30px;
  color: #fff;
  font-size: 0.9rem;
}

.termin a {
  color: #fff;
  text-decoration: none;
}

.termin a:hover {
  text-decoration: underline;
}

.termin h4 {
  margin-bottom: 5px;
}

/* ===================== */
/* COMING SOON */
/* ===================== */
.coming-soon {
  position: relative;
  z-index: 2;

  margin-top: 60px;          /* weiter runter */
  
  color: rgba(255,255,255,0.6); /* ausgegraut */
  font-size: 2.2rem;         /* kleiner */
  font-weight: 500;          /* weniger dick */
  letter-spacing: 4px;       /* leicht ausgebaut */
  text-transform: uppercase;

  text-shadow: none;         /* kein Glow mehr */
}

/* NAVIGATION */
.site-nav {
  width: 100%;
  background-color: #0b2a55;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.nav-links li a:hover {
  color: #4da3ff;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1024px) {
  .hero-logo {
    max-width: 700px;
  }

  .hero-contact {
    gap: 20px;
  }

  .coming-soon {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }

  :root {
    --hero-bg-pos: 40%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: inline-block;
  }

  .hero-logo {
    max-width: 500px;
    margin-bottom: 30px;
  }

  .hero-contact {
    flex-direction: column;
    gap: 15px;
    font-size: 0.8rem;
  }

  .termin {
    margin-top: 20px;
    font-size: 0.85rem;
  }

  .coming-soon {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .nav-links {
    justify-content: center;
    margin: 0 auto;
  }

  :root {
    --hero-bg-pos: 29%;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 380px;
  }

  .hero-contact {
    font-size: 0.75rem;
  }

  .hero-contact .contact-item h4 {
    font-size: 0.8rem;
  }

  .termin {
    font-size: 0.8rem;
  }

  .coming-soon {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .nav-links li a {
    font-size: 0.75rem;
  }

  :root {
    --hero-bg-pos: 25%;
  }
}