/* geist-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/geist-v4-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* geist-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/geist-v4-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* geist-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/geist-v4-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --blue: #0F172A;
  --turquoise: #00CFFF;
  --white: #ffffff;
  --gray: #f5f5f5;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  background: var(--gray);
  color: var(--blue);
  line-height: 1.6;
}

.container {
  width: 1400px;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.page-logo {
    position: absolute;
    right: 75px;
    top: 90px;
    width: 150px;
    height: 100px;
}

/* HERO */
.hero {
 width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px;
  overflow: hidden;
  position: relative;
}


.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

/* Optional: dunkles Overlay für bessere Lesbarkeit */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.hero-box {
  background: var(--blue);
  padding: 40px 60px;
  border-radius: 40px;
  max-width: 900px;
  position: relative;
  z-index: 999999;
}

.hvi .row-one {
  color: var(--turquoise);
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;  
  text-transform: uppercase;
  display: block;
  padding-top: 70px;
}

.hvi .row-two {
  color: var(--turquoise);
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;  
  text-transform: uppercase;
  display: block;
  margin-bottom: 80px;
}

.hero h1 {
  color: var(--turquoise);
  font-size: 54px;
  line-height: 64px;
  margin-bottom: 20px;
  font-weight: 600;
  margin-bottom: 80px;
  overflow-wrap: break-word;
}

.btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 60px;
    padding-right: 20px;
}

.btn {
  display: inline-block;
  border: 1px solid var(--turquoise);
  color: var(--turquoise);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--turquoise);
  color: var(--blue);
}

/* SECTION LIGHT */
.section-light {
  background: var(--gray);
  color: var(--blue);
  padding: 8rem 0;
}

h2 {
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--blue);
}

h2.white {
    color: var(--turquoise);
    margin-bottom: 80px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.section-light h2 {
  margin-bottom: 20px;
}

.about__intro p {
    font-size: 40px;
    line-height: 56px;
    font-weight: 500;
}

.about__list p {
    font-size: 21px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about__list ul {
    font-size: 21px;
    line-height: 32px;
    font-weight: 500;
    margin-left: 0;
    margin-bottom: 20px;
    list-style: none;
}

.about__list ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.about__list ul li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 4px;

  width: 25px;
  height: 25px;

  background: url("../images/arrow-right.svg") no-repeat center;
  background-size: contain;
}

/* SERVICES */
.services {
  padding: 8rem 0px;
  background: var(--blue);
}

.service-box {
  border: 1px solid var(--turquoise);
  padding: 40px;
  border-radius: 24px;
  margin-bottom: 50px;
  width: 100%;
}

.service-box.one {
  width: 80%;
}

.service-box.two {
  width: 85%;
}

.service-box.three {
  width: 90%;
}

.service-box.four {
  width: 95%;
}

.service-box h3 {
  color: var(--turquoise);
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-box p  {
  color: var(--turquoise);
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 42px;
}

/* MISSION */
.mission {
  background: url('../images/mission.jpg') center/cover no-repeat;
  padding: 20rem 0;
}

.mission-box {
  background: var(--blue);
  padding: 60px;
  border-radius: 40px;
  max-width: 600px;
}

.mission-box p {
    color: var(--turquoise);
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom: 60px;
}

/* FOOTER */
.footer {
  padding: 40px;
  background: var(--blue);
  color: var(--turquoise);
}

.footer-content {
    padding: 6rem 0;
}

.footer-content a {
    color: var(--turquoise);
}

#contact p {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
}

.footer-links {
    padding-top: 8rem;
    text-align: center;
}

.footer-links a {
  color: var(--turquoise);
  margin-left: 20px;
  text-decoration: none;
  font-size: 20px;
  text-transform: uppercase;
}

.footer-links a:hover {
  text-decoration: underline;
}

.mobile-images {
    display: none;
}

.hero.standard {
    background: var(--blue);
}

.hero.standard::after {
    background: none;
}

.impressum {
    padding: 6rem 0;
}

.impressum h1 {
    margin-bottom: 1.5rem;
}

.impressum h2 {
    margin-bottom: 0;
    text-transform: none;
    padding-top: 2rem;
}

.impressum a {
    color: var(--blue);
}

.impressum ul {
    margin-left: 20px;
}

/* RESPONSIVE */
@media(max-width: 1040px) {

    .page-logo {
        right: 0;
        top: 20px;
    }

    .hero {
        background: var(--blue);
        padding: 0px;
    }

    .hero::after {
        background: none;
        }

    .hero-box {
        padding: 0;
    }

    .hvi .row-one {
        padding-top: 40px;
    }

    .btn-wrapper {
        justify-content: center;
        padding-right: 0;
    }

    .section-light {
        padding: 4rem 0;
    }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services {
    padding: 4rem 0;
  }

  .hero {
    height: auto;
  }

  .mission {
  background: var(--gray);
  padding: 4rem 0;
}

.mission-box {
  background: var(--gray);
  max-width: 100%;
  padding: 0;
}

.mission-box p {
    color: var(--blue);
}

.mission h2.white {
    color: var(--blue);
    margin-bottom: 60px;
}

  .footer-content {
    padding: 4rem 0;
}

  .footer-links a {
    margin-left: 0;
    margin-right: 15px;
  }
  .mobile-images {
    display: block;
}

.footer {
    padding: 0;
}
}


@media(max-width: 840px) {
    .hero h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .hvi .row-one {
        padding-top: 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .hvi .row-two {
        font-size: 14px;
        line-height: 20px;
    }

    .page-logo {
        width: 90px;
        top: 18px;
    }

    .btn {
        font-size: 16px;
    }

    .about__intro p {
     font-size: 28px;
     line-height: 40px;
    }

    .about__list p,
    .about__list ul {
        font-size: 18px;
        line-height: 29px;
    }

    h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .service-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .service-box h3 {
        font-size: 24px;
    line-height: 32px;
    }

    .service-box p {
        font-size: 24px;
    line-height: 32px;
    }

    .mission {
        padding-bottom: 1rem;
    }

    .mission-box p {
        font-size: 24px;
    line-height: 32px;
    }

    #contact p {
        font-size: 24px;
    line-height: 32px;
    }

    .footer-links a {
        font-size: 16px;
        
    }

    .service-box.one {
  width: 100%;
}

.service-box.two {
  width: 100%;
}

.service-box.three {
  width: 100%;
}

.service-box.four {
  width: 100%;
}
}