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

:root {
  --primary: #1b8ef2;
  --primary-dark: #0f6fd6;
  --accent: #46a5a7;
  --bg: #ffffff;
  --surface: #f5f8fb;
  --surface-2: #eef5ff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --shadow: rgba(15, 23, 42, 0.12);
  --shadow-strong: rgba(15, 23, 42, 0.22);
  --neon-glow: rgba(27, 142, 242, 0.28);
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

/* HEADER */
header {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.navlogo img {
  max-height: 100px;
}

.navmenu ul {
  display: flex;
  gap: 20px;
}

.navmenu a {
  color: var(--text);
  padding: 10px 15px;
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-color: transparent;
  transition: all 0.4s ease;
}

.navmenu a:hover {
  text-decoration-color: var(--primary);
  color: var(--primary-dark);
}

.header-hamburger {
  display: none;
}

.sidebar {
  display: none;
}

@media (max-width: 1120px) {
  .navmenu ul {
    display: none;
  }

  .header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 26px;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
  }

  .header-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text);
    transition: 0.25s;
    transform-origin: center;
  }

  .header-hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header-hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header-hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .sidebar {
    display: block;
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: var(--bg);
    padding: 90px 30px;
    transition: right 0.3s ease;
    z-index: 9999;
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 40px rgba(15, 23, 42, 0.12);
  }

  .sidebar.show-sidebar {
    right: 0;
  }

  .sidebar a {
    display: block;
    color: var(--text);
    font-size: 1.2rem;
    padding: 14px 0;
  }

  .sidebar a:hover {
    color: var(--primary-dark);
  }
}

@media (max-width: 900px) {
  .navlogo{
  margin-left: -30px;
}

}





/* HOME */
.home-area {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.home-area__bgvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.home-area__container {
  width: min(1200px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.home-area__left {
  width: min(640px, 100%);
}

.home-area__kicker {
  color: #7fc8ff;
  letter-spacing: 3px;
  font-size: clamp(14px, 3.5vw, 18px);
  text-transform: uppercase;
  margin: 0 0 18px 0;
}

.home-area__headline {
  color: white;
  font-size: clamp(32px, 8vw, 86px);
  line-height: 1.05;
  margin: 0 0 22px 0;
  font-weight: 200;
}

.home-area__copy {
  color: white;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.8;
  margin: 0 0 34px 0;
  max-width: 560px;
}

.home-area__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-area__cta {
  background: var(--primary);
  color: var(--bg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: clamp(10px, 3vw, 14px) clamp(18px, 5vw, 28px);
  border-radius: 26px;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.home-area__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px var(--shadow-strong);
  background: var(--primary-dark);
}

.cta2 {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.cta2:hover {
  background: var(--surface-2);
}

@media (max-width: 900px) {
  .home-area__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-area__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .home-area__actions {
    justify-content: center;
  }
}




/* REFERENCE */
.reference {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 16px 24px 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
}

.reference__heading {
  text-align: center;
  font-size: 32px;
  margin: 0 0 32px 0;
  color: var(--text);
}

.reference__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
  width: 100%;
}

.reference__card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  height: 600px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.reference__video {
  width: 100%;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.06);
}

.reference__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference__title {
  font-size: 18px;
  line-height: 1.3;
  margin: 12px 0 0 0;
  color: var(--text);
}

.reference__link {
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: var(--bg);
  background-color: var(--primary);
  width: fit-content;
}

.reference__link:hover {
  background: var(--primary-dark);
}

@media (max-width: 1100px) {
  .reference__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reference__grid {
    grid-template-columns: 1fr;
  }

  .reference__title {
    font-size: 16px;
  }
}



/* SECTION TWO */
.sectiontwo {
  padding: 70px 24px;
  background: var(--surface);
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.sectiontwo-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
}

.sectiontwo-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 0 70px 0;
}

.sectiontwo-feature {
  background: linear-gradient(160deg, rgba(27, 142, 242, 0.12) 0%, rgba(70, 165, 167, 0.10) 100%);
  border-radius: 14px;
  padding: 26px 20px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.sectiontwo-feature-title {
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.sectiontwo-feature-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sectiontwo-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sectiontwo-imagewrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--bg);
}

.sectiontwo-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sectiontwo-kicker {
  margin: 0 0 12px 0;
  letter-spacing: 2px;
  color: var(--primary-dark);
  font-size: 18px;
  text-transform: uppercase;
}

.sectiontwo-headline {
  margin: 0 0 18px 0;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.1;
  color: var(--text);
}

.sectiontwo-copy {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.sectiontwo-list {
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
}

.sectiontwo-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}

.sectiontwo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(70, 165, 167, 0.14);
}

@media (max-width: 900px) {
  .sectiontwo-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectiontwo-about {
    grid-template-columns: 1fr;
  }

  .sectiontwo-image {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .sectiontwo-features {
    grid-template-columns: 1fr;
  }
}



/* Galery */
.galery {
  padding: 70px 24px;
  background: var(--bg);
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.galery-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.galery-kicker {
  margin: 0 0 12px 0;
  letter-spacing: 2px;
  color: var(--primary-dark);
  font-size: 18px;
  text-transform: uppercase;
}

.galery-headline {
  margin: 0 0 14px 0;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.1;
  color: var(--text);
}

.galery-copy {
  margin: 0 auto 34px auto;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.galery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.galery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.galery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.14);
}

.galery-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .galery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .galery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galery-img {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .galery-grid {
    grid-template-columns: 1fr;
  }

  .galery-img {
    height: 240px;
  }
}



/* CONTACT */
.contact {
  padding: 80px 24px;
  background: #f4f7fa;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-kicker {
  letter-spacing: 2px;
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-headline {
  font-size: clamp(28px, 6vw, 42px);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 18px;
}

.contact-copy {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  font-size: 16px;
  color: var(--text);
}

.contact-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--bg);
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-image {
    height: 320px;
  }
}



/* BILD */
.as-facility-banner
{
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px)
{
    .as-facility-banner
    {
        height: 30vh;
        content: url("img/asMOBILE.png");
    }
}







/* FOOTER */
.footer {
  padding-top: 70px;
  padding-bottom: 30px;
  background: radial-gradient(circle at top, rgba(27, 142, 242, 0.861) 0%, rgba(70, 165, 167, 0.22) 45%, rgba(245, 248, 251, 1) 100%);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.footer-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-item {
  font-size: 16px;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.footer-social:hover {
  background: var(--primary-dark);
}

.footer-legal {
  font-size: 15px;
  color: var(--text);
  opacity: 0.9;
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-legal:hover {
  opacity: 1;
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}



/* IMPRESSUM & DATENSCHUTZ */
.impressum,
.datenschutz {
  padding-bottom: 90px;
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

.impressum-container,
.datenschutz-container {
  width: min(900px, 100%);
  margin: 0 auto;
  padding-top: 90px;
}

.impressum-kicker,
.datenschutz-kicker {
  letter-spacing: 2px;
  color: var(--primary-dark);
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
  margin-top: 100px;
}

.impressum-headline,
.datenschutz-headline {
  font-size: clamp(28px, 6vw, 42px);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 26px;
}

.impressum-text,
.datenschutz-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

.impressum-text p,
.datenschutz-text p {
  margin-bottom: 14px;
}

.impressum-text strong,
.datenschutz-text strong {
  font-weight: 700;
  color: var(--text);
}
.datenschutz
{
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.datenschutz h1
{
  font-size: 32px;
  margin-top: 100px;
  margin-bottom: 24px;
}

.datenschutz h2
{
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.datenschutz p
{
  margin-bottom: 10px;
  font-size: 16px;
}


@media (max-width: 600px) {
  .impressum,
  .datenschutz {
    padding: 60px 20px;
  }
}
