﻿/* === Global CSS === */

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

  html {
  scroll-behavior: smooth;
}

main {
  overflow-x: hidden; /* verhindert überlaufende Inhalte */
}
  
 body {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  color: #ecebdf;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('/img/background.jpg') no-repeat center center;
  background-size: cover;
  background-color: #222; /* fallback */
  z-index: -1;
  pointer-events: none;
}

  /* Typography */
  h1 {
    font-family: "GenericG60CCHuge";
    text-transform: uppercase;
    font-weight: 400;
    font-size: 50px;
    line-height: 56px;
    text-align: center;
    padding-bottom: 20px;
      color: #ecebdf;

  }

  h2 {
    font-family: "GenericG60CCHuge";
    font-weight: 400;
    text-transform: uppercase;
    font-size: 35px;
    line-height: 39px;
    text-align: left;
    padding-bottom: 20px;
  }

  h3 {
    font-family: "GenericG60CCHuge";
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    text-align: left;
    padding-bottom: 8px;
  }

  p {
    font-family: Rubik, sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    font-weight: 300;
  }

  .p-small {
    font-size: 15px;
    line-height: 20px;
  }

  .lead {
    font-family: Rubik, sans-serif;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .strong {
    font-weight: 600;
  }

    /* === Responsive Layout === */
@media (max-width: 1200px) {

  h1 {
    font-size: 45px;
    line-height: 50px;
    padding-bottom: 10px;
   }

  h2 {
    font-size: 30px;
    line-height: 34px;
  }

  h3 {
    font-size: 20px;
    line-height: 23px;
  }

  p {
    font-size: 16px;
    line-height: 22px;
  }

  .lead {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 4px;
  }
}
@media (min-width: 1200px) {
  .lead {
    padding: 0px 100px 0px 100px;
  }
}
@media (min-width: 700px) {
  .lead {
    padding: 0px 80px 0px 80px;
  }
}


@media (max-width: 800px) {

  h1 {
    font-size: 40px;
    line-height: 44px;
   }

  h2 {
    font-size: 25px;
    line-height: 28px;
  }

  h3 {
    font-size: 18px;
    line-height: 20px;
  }

  p {
    font-size: 14px;
    line-height: 16px;
  }

  .p-small {
    font-size: 12px;
    line-height: 14px;
  }

  .lead {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 580px) {

  h1 {
    font-size: 30px;
    line-height: 35px;
   }

  h2 {
    font-size: 22px;
    line-height: 26px;
  }

  h3 {
    font-size: 16px;
    line-height: 18px;
    padding-bottom: 4px;
  }
}
  
  /* Buttons */
  .cta-button {
    background-color: #83C0E5;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s ease;
    text-decoration: none;
    border: none;
    margin-bottom: 40px;
  }
  
  .cta-button:hover {
  padding: 12px 28px;  
  }

  @media (max-width: 1200px) {

  .cta-button {
    font-size: 15px;
    line-height: 18px;
    padding: 10px 20px;
   }

  .cta-button:hover {
    padding: 10px 24px;
  }
  }

  @media (max-width: 800px) {

  .cta-button {
    font-size: 14px;
    line-height: 15px;
    padding: 8px 18px;
   }

  .cta-button:hover {
    padding: 8px 22px;
  }
  }
  
  .secondary-button {
    border: 2px solid #83C0E5;
    color: #83C0E5;
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    transition: 0.3s ease;
    text-decoration: none;
  }
  
  .secondary-button:hover {
    background-color: #83C0E5;
    color: #000;
  }

  @media (max-width: 800px) {

  .secondary-button {
    font-size: 14px;
    margin-top: 0px;
   }
  }

  