/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --primary-color: #4B2142; /* Dunkles Lila */
  --secondary-color: #ffffff; /* Weiß */
  --text-color: #333333; /* Dunkles Grau */
  --background-color: #FAFAFA; /* Helles Grau */

  /*========== Font and typography ==========*/
  --heading-font: 'Cairo', sans-serif;
  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== Transition and z index ==========*/
  --transition-speed: 0.3s;
  --z-tooltip: 10;
  --z-fixed: 100;
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--heading-font);
  font-size: var(--normal-font-size);
  background-color: white;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: var(--z-fixed);
}


/*=============== FOOTER ===============*/
.footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 2rem 1rem;
  font-family: var(--body-font);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__title {
  font-size: 1.5rem;
  font-family: var(--heading-font);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.footer__description {
  font-size: 1rem;
  line-height: 1.6;
}

.footer__list {
  list-style: none;
  padding: 0;
}

.footer__link {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer__link:hover {
  color: var(--text-color);
}

.footer__bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

@media screen and (max-width: 768px) {
  .footer__container {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer__list {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
}
