/* ---------------------------------------
   BASISLAYOUT UND GLOBALS
------------------------------------------ */
html {
  scroll-behavior: smooth;
  font-family: "SegoeSchrift", sans-serif;
}

body {
  font-family: "SegoeSchrift", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafa;
  color: #2e2e2e;
  line-height: 1.6;
}

body.no-scroll {
  position: fixed;
  overflow-y: hidden;
  width: 100%;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  z-index: 2;
}

/* ---------------------------------------
   HERO-BEREICH MIT HINTERGRUNDBILD
------------------------------------------ */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px;
  background: url("../assets/img/iStock-2193128600.jpg") center/cover no-repeat;
}

.blur-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.4);
  /* heller Schleier */
  z-index: 1;
}

.hero-content {
  position: relative;
  top: 10px;
  z-index: 2;
  padding: 50px 20px;
}

.hero-title {
  font-size: 62px;
  margin: 0 0 20px;
  color: #025d6d;
  text-align: center;
  font-weight: 700;
}

.hero-second-title{
  font-size: 24px;
    color: #025d6d;
    text-align: center;
    font-weight: 500;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 500;
  margin: 0 auto;
  color: #096879;
  text-align: center;
}

.logo-team {
  display: flex;
}

/* ---------------------------------------
   ABSCHNITTSÜBERSCHRIFTEN & TEXTE
------------------------------------------ */
.section-title {
  font-size: 38px;
  color: #003b45;
  display: flex;
  justify-content: center;
  font-weight: 700;
}

.section-text {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}
.section-text li {
  list-style: none;
}

/* ---------------------------------------
   ABSCHNITT-HINTERGRÜNDE (Strukturfarben)
------------------------------------------ */
.section-intro {
  background-color: #61a6aa;
  color: white;
  padding: 100px 20px;
  position: relative;
}

.section-values {
  background-color: #e2e7e2;
  color: #003b45;
  padding: 100px 20px;
}

.section-team {
  background-color: #f7f7f7;
  color: #003b45;
  padding: 100px 20px;
}

.section-contact {
  background-color: #61a6aa;
  color: white;
  padding: 100px 20px;
}

/* ---------------------------------------
   FOOTER-BEREICH
------------------------------------------ */
.site-footer {
  background-color: #002f36;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #cde7e9;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-text {
  text-align: center;
  font-size: 12px;
}
.footer-links {
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  line-height: 1.4;
  padding-top: 15px;
}
.extern {
  font-size: 14px;
  font-weight: 300;
  color: #cde7e9;
  text-decoration: none;
}
.mobile {
  display: flex;
  flex-direction: column;
}

.footer-links .divider,
.footer-contact .divider {
  display: inline-block;
  width: 1px;
  height: 1em;
  background-color: #cde7e9;
  opacity: 0.6;
  position: relative;
  top: 1px;
}

.footer-links a:hover {
  transform: scale(1.1);
  font-weight: 700;
  color: #cde7e9;
  cursor: pointer;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
  font-size: 18px;
  color: #cde7e9;
}

.footer-contact-only {
  display: flex;
  font-size: 24px;
  font-weight: 300;
  display: flex;
  justify-content: center;
}

.footer-contact-second {
  font-size: 16px;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

a.footer-contact,
a.footer-contact-second {
  display: inline-block;
  text-decoration: none;
  color: #cde7e9;
  font-weight: 400;
  transition: transform 0.2s ease, color 0.2s ease;
}

a.footer-contact:hover,
a.footer-contact-second:hover {
  transform: scale(1.1);
  font-weight: 700;
  color: #cde7e9;
  cursor: pointer;
}
#loader-overlay {
  position: fixed;
  inset: 0;
  background-color: rgb(97, 166, 170);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.loader-box {
  text-align: center;
}

.loader-logo {
  width: 600px;
  max-width: 80vw;
  height: auto;
}
#loading-percentage {
  font-size: 24px;
  font-weight: bold;
  color: #004f4f;
}