/* ===========================
  Color - Theme
=========================== */
:root {
  --color-primary: #00468e;
  --color-text: #737272;
  --color-accent: #da251c;
  --color-bg: #ffffff;
}

/* ===========================
  local Fonts
=========================== */
@font-face {
  font-family: "Quantico";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Quantico/Quantico-Bold.woff2") format("woff2"),
    url("../fonts/Quantico/Quantico-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Quantico";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Quantico/Quantico-Regular.woff2") format("woff2"),
    url("../fonts/Quantico/Quantico-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "MrDafoe";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Arizonia/Arizonia-Regular.ttf") format("truetype");
  font-display: swap;
}

/* ===========================
   Grundlegende Reset-Styles
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--color-text);
  scroll-behavior: smooth;
}

html {
  font-size: 14px; /* Mobile Basis */
}

p {
  font-weight: 400;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  color: #3a3a3a;
  font-weight: 400;
}

h3 {
  font-size: 1.2rem;
  color: #3a3a3a;
  font-weight: 400;
}

li {
  font-weight: 400;
}

a {
  font-weight: 400;
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px; /* Tablets & Laptops */
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 18px; /* große Screens */
  }
}

/* ===========================
   Allgemeine Stile
=========================== */
body {
  font-family: "Quantico", Arial, Helvetica, sans-serif;
  background-color: white;
  color: #333;
}

.underline {
  margin-top: 16px;
  height: 2px;
  background-color: var(--color-primary);
  width: 90px;
}

/* ===========================
   Header & Navigation
=========================== */
header {
  z-index: 999;
  position: sticky;
  top: 0;
  padding: 0 320px;
  width: 100%;
  height: 112px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.infos {
  padding: 0 320px;
}

/* ===========================
   Hauptbereich
=========================== */
main {
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

section {
  background-color: #a59292;
  max-width: 1920px;
  width: 100%;
  padding: 0 320px;
}

.btn {
  padding: 16px 24px;
  border: 2px solid white;
}

.btn:hover {
  cursor: pointer;
}

/* ===========================
   Footer
=========================== */
footer {
  width: 100%;
  background-color: white;
  padding: 0px;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */

/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
  .infos {
    padding: 0 120px;
  }

  header {
    padding: 0 120px;
  }

  section {
    padding: 0 120px;
  }
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .infos {
    padding: 0 44px;
  }

  header {
    padding: 0 72px;
  }

  section {
    padding: 0 72px;
  }
}

/* Medium Devices (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .infos {
    padding: 0 24px;
  }

  header {
    padding: 0 24px;
  }

  section {
    padding: 0 24px;
  }
}

/* Small Devices (576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .infos {
    padding: 0 72px;
  }

  header {
    padding: 0 72px;
  }

  section {
    padding: 0 72px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  .infos {
    padding: 0 24px;
  }

  header {
    padding: 0 24px;
    height: 92px;
  }

  section {
    padding: 0 24px;
  }
}
