/* ===========================
  Color - Theme
=========================== */
:root {
  --color-primary: #4a221a;
  --color-text: #292929;
  --color-accent: #e0a45e;
  --color-bg: #ffffff;
  --color-bg-two: #f6f2e9;
}

/* ===========================
  local Fonts
=========================== */
@font-face {
  font-family: "Tangerine";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/Tangerine/Tangerine-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Baloo";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Baloo_Bhaijaan_2/BalooBhaijaan2-VariableFont_wght.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: 5rem;
  font-family:
    "Tangerine", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 4rem;
  font-family:
    "Tangerine", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

h3 {
  font-size: 3rem;
  font-family:
    "Tangerine", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

li {
  font-weight: 400;
}

a {
  font-weight: 400;
}

.headline-pos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.headline-pos img {
  height: 36px;
  object-fit: cover;
}

@media (max-width: 576px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  h3 {
    font-size: 2.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: "Baloo", Arial, Helvetica, sans-serif;
  background-color: var(--color-bg-two);
  color: #333;
}

.underline {
  margin-top: 16px;
  height: 2px;
  background-color: var(--color-text);
  width: 90px;
}

/* ===========================
   Header & Navigation
=========================== */
header {
  max-width: 2560px;
  margin: 0 auto;
  z-index: 999;
  position: sticky;
  top: 0;
  padding: 0 96px;
  width: 100%;
  height: 112px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(246, 242, 233, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ===========================
   Hauptbereich
=========================== */
main {
  width: 100%;
  background-color: var(--color-bg);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

section {
  background-color: var(--color-bg);
  max-width: 2560px;
  width: 100%;
  padding: 0 120px;
}

.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) {
  header {
    padding: 0 120px;
  }

  section {
    padding: 0 120px;
  }

  .headline-pos img {
    height: 32px;
  }
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  header {
    padding: 0 72px;
  }

  section {
    padding: 0 72px;
  }

  .headline-pos img {
    height: 32px;
  }
}

/* Medium Devices (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  header {
    padding: 0 24px;
  }

  section {
    padding: 0 24px;
  }

  .headline-pos img {
    height: 32px;
  }
}

/* Small Devices (576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  header {
    padding: 0px 18px;
  }

  section {
    padding: 0 18px;
  }

  .headline-pos img {
    height: 32px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  header {
    padding: 0 24px;
    height: 92px;
  }

  section {
    padding: 0 24px;
  }

  .headline-pos img {
    height: 22px;
  }
}
