/*

--- TYPOGRAPHY SYSTEM

- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 /30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights:

- Line-heights:

- Letter Spacing:


---COLORS


--- SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

/***********************************************************/
/* FONT DECLARATIONS */
/***********************************************************/

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/***********************************************************/
/* CSS-VARIABLES/CUSTOM PROPERTIES */
/***********************************************************/

:root {
  --section-padding: clamp(6.4rem, 3.333vw + 5.333rem, 9.6rem);
  --container-padding: clamp(2.4rem, 0.833vw + 2.133rem, 3.2rem);

  --text-2xs: clamp(1rem, 0.208vw + 0.933rem, 1.2rem);
  --text-xs: clamp(1.2rem, 0.208vw + 1.133rem, 1.4rem);
  --text-sm: clamp(1.4rem, 0.208vw + 1.333rem, 1.6rem);
  --text-base: clamp(1.6rem, 0.417vw + 1.467rem, 2rem);
  --text-lg: clamp(1.8rem, 0.417vw + 1.667rem, 2.2rem);
  --text-xl: clamp(2rem, 0.625vw + 1.8rem, 2.6rem);
  --text-2xl: clamp(2.4rem, 0.833vw + 2.133rem, 3.2rem);
  --text-3xl: clamp(3rem, 1.875vw + 2.4rem, 4.8rem);
  --text-4xl: clamp(3.6rem, 2.917vw + 2.667rem, 6.4rem);

  --space-xs: clamp(1.6rem, 0.833vw + 1.333rem, 2.4rem);
  --space-sm: clamp(2.4rem, 0.833vw + 2.133rem, 3.2rem);
  --space-md: clamp(3.2rem, 1.667vw + 2.667rem, 4.8rem);
  --space-lg: clamp(4.8rem, 1.667vw + 4.267rem, 6.4rem);
  --space-xl: clamp(6.4rem, 3.333vw + 5.333rem, 9.6rem);

  --color-brand: #f39200;
  --color-primary: #d67200;
  --color-primary-dark: #1a2942;
  --color-text: #2c3e50;
  --color-text-light: #f8f9fa;
  --color-background-main: #ffffff;
  --color-background-alt: #f5f7fa;
  --color-background-subtle: #e9ecef;
  --color-background-accent: #fff5e6;
  --color-background-dark: #233246;

  --animation-duration: 24s;
  --image-count: 4;
  --text-shadow-hero: 2px 2px 8px rgba(0, 0, 0, 0.9);
  --backdrop-hero: rgba(0, 0, 0, 0.5);
}

/***********************************************************/
/* CSS RESET */
/***********************************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

#root,
#__next {
  isolation: isolate;
}

/***********************************************************/
/* GENERAL STYLES*/
/***********************************************************/

html {
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 9.6rem;
}

body {
  overflow-x: hidden;
}

/***********************************************************/
/* GENERAL REUSABLE COMPONENTS */
/***********************************************************/

.container {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
}

.heading-primary {
  line-height: 1.05;
  font-size: var(--text-4xl);
  color: white;
}

.heading-secondary {
  font-size: var(--text-3xl);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.heading-tertiary {
  font-size: var(--text-xl);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.subheading {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.subheading-small {
  font-size: var(--text-2xs);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
}
.subheading-normal {
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1;
}

/***********************************************************/
/* HEADER */
/***********************************************************/

.hamburger {
  width: 3rem;
  height: 2rem;
  cursor: pointer;
  z-index: 100;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.sticky .hamburger span {
  background-color: var(--color-text);
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span {
  background: var(--color-primary);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
}

.mobile-nav ul li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.mobile-nav.active ul li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for list items */
.mobile-nav ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav ul li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-nav ul li a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 98;
}

.mobile-nav__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.desktop-nav__links {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
}

.desktop-nav__link:link,
.desktop-nav__link:visited {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding-bottom: 3px;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
  font-weight: 600;
}

.desktop-nav__link:hover,
.desktop-nav__link:active {
  color: #f39200;
}

.desktop-nav__link.active {
  border-bottom: 3px solid #f39200;
}

.sticky .desktop-nav__link:link,
.sticky .desktop-nav__link:visited {
  color: var(--color-primary-dark);
}

.sticky .desktop-nav__link:hover,
.sticky .desktop-nav__link:active {
  color: #f39200;
}

.header {
  position: absolute;
  background: transparent;
  height: 8rem;
  padding: 1.6rem;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 160rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.header__logo {
  height: 4rem;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

/* Media Queries */

@media (min-width: 768px) {
  .header {
    height: 12rem;
  }
  .sticky .header {
    height: 12rem;
  }

  .desktop-nav {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav,
  .mobile-nav__overlay {
    display: none;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hamburger span,
  .mobile-nav,
  .mobile-nav ul li,
  .overlay,
  .mobile-nav ul li a::after {
    transition: none;
  }
}

/***********************************************************/
/* HERO SECTION */
/***********************************************************/

.section-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--backdrop-hero);
  z-index: 1;
}

.hero__container {
  position: relative;
  min-height: 100vh;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  justify-content: center;
  align-items: center;
}

.hero__heading {
  text-shadow: var(--text-shadow-hero);
}

.hero__logo {
  margin-bottom: 1.2rem;
  height: 9.6rem;
  width: auto;
}

.hero__text {
  font-size: var(--text-xl);
  text-shadow: var(--text-shadow-hero);
  font-weight: 500;
  max-width: 47.5rem;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation-name: heroAnimation;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: var(--animation-duration);
}

#hero__background-1 {
  background-image: url("../assets/images/hero-section/hero-img-1-mobile.jpg");
  background-image: image-set(
    url("../assets/images/hero-section/hero-img-1-mobile.webp"),
    url("../assets/images/hero-section/hero-img-1-mobile.jpg")
  );
  animation-delay: 0s;
}
#hero__background-2 {
  background-image: url("../assets/images/hero-section/hero-img-2-mobile.jpg");
  background-image: image-set(
    url("../assets/images/hero-section/hero-img-2-mobile.webp"),
    url("../assets/images/hero-section/hero-img-2-mobile.jpg")
  );
  animation-delay: calc(var(--animation-duration) / var(--image-count));
}
#hero__background-3 {
  background-image: url("../assets/images/hero-section/hero-img-3-mobile.jpg");
  background-image: image-set(
    url("../assets/images/hero-section/hero-img-3-mobile.webp"),
    url("../assets/images/hero-section/hero-img-3-mobile.jpg")
  );
  animation-delay: calc((var(--animation-duration) / var(--image-count)) * 2);
}
#hero__background-4 {
  background-image: url("../assets/images/hero-section/hero-img-4-mobile.jpg");
  background-image: image-set(
    url("../assets/images/hero-section/hero-img-4-mobile.webp"),
    url("../assets/images/hero-section/hero-img-4-mobile.jpg")
  );
  animation-delay: calc((var(--animation-duration) / var(--image-count)) * 3);
}

@keyframes heroAnimation {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: scale(1.1);
  }
  42% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero__background {
    animation: none;
    opacity: 0;
    transform: none;
    transition: none;
  }

  #hero__background-1 {
    opacity: 1;
  }
}

/***********************************************************/
/* ABOUT-US SECTION */
/***********************************************************/

.section-about-us {
  padding: var(--section-padding) 0;
}

.about-us__leading-text {
  font-size: var(--text-lg);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

.about-us__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.about-us__feature {
  display: flex;
  flex-direction: column;
}

.about-us__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fbf1e6;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  margin-bottom: 1.6rem;
}

.about-us__icon {
  color: var(--color-primary);
  width: 2.4rem;
  height: 2.4rem;
}

.about-us__feature strong {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.about-us__outro-text {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary-dark);
}

/***********************************************************/
/* COMPETENCES SECTION */
/***********************************************************/

.section-competences {
  padding: var(--section-padding) 0;
}

.competences__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.competence {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.competence__text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
}

/* Media Queries */

@media (min-width: 1024px) {
  .competence {
    flex-direction: row;
    align-items: center;
  }
  .competence:nth-child(even) {
    flex-direction: row-reverse;
  }
  .competence__text-wrapper {
    flex-basis: 60%;
  }

  .competence__img-wrapper {
    flex-basis: 40%;
  }
}

/***********************************************************/
/* PROJECTS SECTION */
/***********************************************************/

.section-projects {
  padding: var(--section-padding) 0;
}

.projects__text {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

.gallery__container {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 1.2rem;
  background-color: #fff;
  overflow: hidden;
}

.projects__gallery > a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects__gallery > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.projects__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  grid-auto-rows: 20rem;
  grid-auto-flow: dense;
}

@media (min-width: 640px) {
  .gallery__container {
    padding: 0 var(--container-padding);
  }

  .projects__gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-auto-rows: 30rem;
    grid-auto-flow: dense;
  }

  .projects__gallery .wide {
    grid-column: span 2;
  }
  .projects__gallery .tall {
    grid-row: span 2;
  }
  .projects__gallery .big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/***********************************************************/
/* CONTACT SECTION */
/***********************************************************/

.section-contact {
  padding: var(--section-padding) 0;
}

.contact__text {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

.contact-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin-bottom: var(--space-lg);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.4rem;
  font-size: var(--text-base);
  color: var(--color-primary-dark);
  background-color: var(--color-background-main);
  border: 2px solid #fde9cc;
  border-radius: 1rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  overflow: hidden;
}

.contact-card__image-wrapper--round {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.contact-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card__name {
  margin-bottom: 3.2rem;
  text-align: center;
}

.contact-card__contact-options {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  list-style: none;
}

.contact-card__contact-option {
  font-weight: 500;
  gap: 1.2rem;
  display: flex;
  align-items: center;
}

.contact-card__icon {
  height: 3.2rem;
  width: 3.2rem;
  stroke: var(--color-primary);
}

.contact-card__phone:link,
.contact-card__phone:visited,
.contact-card__email:link,
.contact-card__email:visited {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;
}

.contact-card__phone:hover,
.contact-card__phone:active,
.contact-card__email:hover,
.contact-card__email:active {
  color: var(--color-primary);
}

.contact-card__modal-btn {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.contact-card__modal-btn--show {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-card__modal-btn--show:hover {
  color: var(--color-primary);
}

.contact-card__modal-btn--close {
  display: flex;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 5px;
}

.contact-card__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6.4rem 3.2rem 3.2rem 3.2rem;
  border: none;
}

.contact-card__modal::backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.contact-card__modal-icon {
  height: 4.8rem;
  stroke-width: 3px;
  color: var(--color-primary);
}

.contact-card__qr-code {
  max-width: 30rem;
  width: 100%;
}

/* Media Queries */

@media (min-width: 768px) {
  .contact-card {
    width: 40rem;
  }

  .contact-cards-wrapper {
    flex-direction: row;
  }
}

/* Contact Form */
.form__wrapper {
  background: linear-gradient(to right, #f49d1a, #f39200);
  padding: var(--space-sm);
  border-radius: 1rem;
  color: #492c00;
}

.form__heading {
  color: #492c00;
}

.form__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-group input,
textarea {
  width: 100%;
  padding: 1rem;
  font-size: var(--text-base);
  border: none;
  border-radius: 5px;
  color: var(--color-text);
}

.form-group textarea {
  height: 15rem;
}

.form-group *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(250, 250, 250, 0.5);
}

.form__btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 1.2rem 2.4rem;
  border-radius: 0.8rem;
  font-size: var(--text-lg);
  background-color: #492c00;
  color: #fff;
}

.form__btn:hover {
  background-color: #fff;
  color: #492c00;
}

/***********************************************************/
/* LEGAL SITES - COMMON STYLES*/
/***********************************************************/
.section-legal {
  padding: calc(8rem + var(--section-padding)) 0 var(--section-padding) 0;
}

.heading-legal-primary,
.heading-legal-secondary,
.heading-legal-tertiary {
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--color-primary-dark);
}

.heading-legal-primary {
  font-size: var(--text-3xl);
  line-height: 1.05;
  margin-bottom: 4.8rem;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.heading-legal-secondary {
  font-size: var(--text-xl);
  line-height: 1.2;
  margin-bottom: 2.4rem;
}

.heading-legal-tertiary {
  font-size: var(--text-lg);
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.legal__text {
  color: var(--color-text);
  font-size: var(--text-base);
  margin-bottom: 1.6rem;
}

.legal__contact {
  font-style: normal;
  font-size: var(--text-base);
  color: var(--color-text);
}

.phone-block {
  display: flex;
  gap: 0.4rem;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
}

/***********************************************************/
/* AGB */
/***********************************************************/
.heading-legal-secondary--agb,
.heading-legal-tertiary--agb {
  display: inline;
}

.agb-list-flexbox {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

/* Reset counter for the list */
.agb-list {
  list-style: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
  font-size: var(--text-base);
  color: var(--color-text);
}

/* Style for list items */
.agb-list > li {
  counter-increment: item;
  margin: 0;
  padding: 0;
}

/* Generate counter numbers */
.agb-list > li::before {
  content: counters(item, ".") ".";
  display: inline-block;
  margin-right: 0.4rem;
}

/* Nested list styles */
.agb-list .agb-list {
  margin-left: 1rem;
}

/* Example browser prefixes for better compatibility */
.agb-list li::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Optional: Style for different nesting levels */
.agb-list > li::before {
  font-weight: bold;
  font-size: 2rem;
}

/* Styles for inner list */

.agb-list .agb-list > li::before {
  font-weight: normal;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Optional: Add spacing between items */
.agb-list > li {
  margin-bottom: 1.2rem;
}

/* Reset margins for last items */
.agb-list li:last-child {
  margin-bottom: 0;
}

.agb-storno-list {
  margin-left: 2.4rem;
}

.heading-legal-secondary--agb + .agb-list {
  margin-top: 1rem;
}
/***********************************************************/
/* IMPRESSUM */
/***********************************************************/
.impressum__gesellschaftsform {
  display: flex;
  gap: 0.8rem;
}

.impressum__firmensitz {
  display: flex;
  gap: 0.8rem;
}

.impressum__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.impressum__rechtliche-angaben {
  list-style: none;
  font-size: var(--text-base);
  color: var(--color-text);
}

/***********************************************************/
/* DATENSCHUTZ */
/***********************************************************/

.section-datenschutz section:not(:last-child) {
  margin-bottom: var(--section-padding);
}

.section-datenschutz ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: square;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-left: 1.2rem;
  margin-bottom: 3.2rem;
}

.section-datenschutz dl {
  display: flex;
  flex-direction: column;
  font-size: var(--text-base);
  color: var(--color-text);
  gap: 0.4rem;
}

.section-datenschutz dl div {
  display: flex;
  gap: 0.8rem;
}

/***********************************************************/
/* FOOTER */
/***********************************************************/

.footer {
  padding: var(--section-padding) 0;
  background-color: var(--color-background-alt);
}

.footer__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.footer-nav__links {
  list-style: none;
  font-size: var(--text-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-nav__link {
  text-decoration: none;
  color: var(--color-text);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-style: normal;
  color: var(--color-text);
  font-size: var(--text-xs);
}

.footer__contact-icon {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--color-text);
}

.footer__contact-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.footer__contact-link:first-child {
  margin-bottom: 1rem;
}

.copyright {
  font-size: var(--text-xs);
  color: var(--color-text);
}

/* Media Queries */

@media (min-width: 768px) {
  .footer__content-wrapper {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

/***********************************************************/
/* UTILITY CLASSES */
/***********************************************************/

.uppercase {
  text-transform: uppercase;
}

.semibold {
  font-weight: 500;
}

.center-text {
  text-align: center;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.margin-bottom-md {
  margin-bottom: 2.4rem;
}

.margin-bottom-sm {
  margin-bottom: 1.6rem;
}

.margin-bottom-lg {
  margin-bottom: 3.2rem;
}
