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

body {
  background: var(--bg-full-color);
}

.header-background {
  background-color: var(--bg-light-color);
  z-index: 1000;
}

.body-width {
  max-width: 1280px;
  margin: 0 auto;
}


:root {
  --primary-color: #44ab08;
  --secondary-color: #eefbfb;
  --success-color: #9fe870;
  --info-color: #17a2b8;
  --text-color: #163300;
  --bg-color: #44ab08;
  --bg-light-color: #eefbfb;
  --bg-dark-color: #163300;
  --bg-full-color: radial-gradient(circle, rgba(159,232,112,1) 0%, rgba(68,171,8,1) 80%);

  /* DARK MODE COLOR SCHEME */
  --color-primary-a0: #44ab08;
  --color-primary-a10: #5eb534;
  --color-primary-a20: #75be50;
  --accent-color-dark: #8bc86a;
  --color-primary-a40: #9fd182;
  --tertiary-color-dark: #b3da9b;

  --bg-primary-dark: #1a3e03;
  --bg-secondary-dark: #32511f;
  --bg-tertiary-dark: #4a6538;
  --border-color-dark: #627a52;
  --color-surface-mixed-a40: #7b8f6c;
  --color-surface-mixed-a50: #94a488;

}

/* FONTS */
@font-face {
    font-family: 'Fingerpop';
    src: url('./fonts/fingerpop.woff2') format('woff2'),
         url('./fonts/fingerpop.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.heading-font {
    font-family: 'Fingerpop';
}

/* COOKIE MESSAGE */
/* CSS für das Banner */
.cookies {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ff6f61;
  color: #fff;
  font-size: 0.75rem;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

@media (min-width: 768px) {
  .cookies {
    font-size: 1rem;
    gap: 8rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }
}

.cookies__button {
  background-color: var(--info-color);
  color: #fff;
  padding: 0.25rem 1rem;
}

/* Mobile Navbar */
.navbar__mobile {
  width: 100%;
  background-color: var(--bg-light-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__mobile-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1.25rem 1rem 1rem;
  border-bottom: 1px solid var(--primary-color);
  box-shadow: none; 
  transition: box-shadow 0.1s ease;
}

.navbar__mobile-container.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.navbar__mobile-container a {
  margin: 0 auto;
}

.navbar__mobile-title {
  font-family: "Fingerpop", sans-serif;
  align-self: center;
  font-size: 1.75rem;
  white-space: nowrap;
  color: var(--primary-color);
}

/* Desktop Navbar */
.navbar__desktop {
  background-color: var(--bg-light-color);
  height: 4.25rem;
  border-bottom: 1px solid var(--primary-color);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.navbar__desktop.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.navbar__desktop-container {
  max-width: 1280px;
  height: inherit;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1rem;
}

.navbar__desktop-title {
  font-family: 'Fingerpop';
  color: var(--primary-color);
}

.navbar__desktop-list {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-weight: 500;
}

.navbar__desktop-list-item {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-color);
  background-color: transparent;
}

.navbar__desktop-list-item:hover {
  text-decoration: underline;
}

.navbar__desktop-social-media {
  width: 200px;
}

.navbar__desktop-social-wrapper {
  display: flex;
  justify-content: space-evenly;
  font-size: 1.25rem;
  color: var(--primary-color);
}

/* MAIN CONTENT */
.feature-teaser__container {
  /* display: block; */
  display: flex;
  margin: 0 1rem;
  padding: 2rem 0 1rem;
  
}

.feature-teaser__info h3 {
  font-family: "Fingerpop", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: normal;
  color: var(--secondary-color);
  margin: 0;
  display: none;
}

.feature-teaser__subheading p {
  color: var(--secondary-color);
  font-family:'Courier New', Courier, monospace;
  font-weight: 600;
  font-size: 1.25rem;
  border: 1px solid var(--secondary-color);
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .feature-teaser__container {
    display: block;
    max-width: 1280px;
    margin: 0 0 5rem;
    padding: 4rem 1rem 0;
  }

  .feature-teaser__info {
    display: block;
  }

  .feature-teaser__info h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12rem;
    font-weight: 400;
    color: var(--secondary-color);
    width: auto;
    max-width: 75%;
    margin: 0;
    display: inline-block;
    line-height: 1;
  }

  .feature-teaser__subheading p {
    border: none;
    padding: 0;
    font-size: 1.75rem;
  }
}

/* MINIMAL TIMELINE MOBILE */
.mobile-timeline__container {
  background-color: var(--bg-full-color);
  margin: 0 1rem;
}

.mobile-timeline__container ol {
  position: relative;
}

.mobile-timeline__container li {
  margin-bottom: 3rem;
}

.mobile-timeline__card {
  max-width: 24rem;
  margin-top: 2rem;
  background-color: var(--bg-light-color);
  border: 1px var(--primary-color) solid;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.mobile-timeline__text {
  padding: 1.25rem;
}

.mobile-timeline__text time,
.mobile-timeline__text h5,
.mobile-timeline__text p {
  color: var(--text-color);
}

.mobile-timeline__text time {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
}

.mobile-timeline__text h5 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  hyphens: auto;
  word-wrap: break-word;
}

/* DESKTOP GALLERY */
.desktop-gallery__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.desktop-gallery__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 24rem;
  margin: 2rem auto 0;
  background-color: var(--bg-light-color);
  border: 1px solid var(--bg-light-color);
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.desktop-gallery__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.desktop-gallery__body-time,
.desktop-gallery__body-headline,
.desktop-gallery__body-text {
  margin: 0;
}

.desktop-gallery__body-headline {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: normal;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #111827;
  word-break: break-word;
  overflow-wrap: break-word;
}

.desktop-gallery__body-text {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4a5568;
}

.desktop-gallery__video-container {
  flex-shrink: 0;
}


/* FOOTER */
footer {
  background-color: transparent;
}

.footer__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

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

footer span, ul {
  font-size: small;
  color: var(--secondary-color);
}

footer span {
  text-align: center;
}

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

@media (min-width: 768px) {
  footer ul {
    flex-wrap: wrap;
    align-items: center;
    font-weight: bold;
  }
}

.imprint-modal__container {
  z-index: 2000;
}

/* DARK MODE */

@media (prefers-color-scheme: dark) {
  body {
    background: var(--bg-primary-dark);
  }

  .header-background,
  .navbar__mobile-container,
  .navbar__desktop,
  .desktop-gallery__container,
  .mobile-timeline__card {
    background-color: var(--bg-secondary-dark);
    border: none;
  }

  .navbar__mobile-title,
  .navbar__desktop-title,
  .desktop-gallery__body-time,
  .desktop-gallery__body-text,
  .mobile-timeline__text time,
  .mobile-timeline__text p {
    color: #fff;
  }

  .navbar__desktop-social-wrapper,
  .desktop-gallery__body-headline,
  .mobile-timeline__text h5 {
    color: var(--tertiary-color-dark);
  }
}
