/*ANCHOR - footer.css*/
/*ANCHOR - erstellt 19.01.2025*/

.footer {
  width: 100vw;
  height: auto;
  min-height: 800px;
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  flex-direction: column;
  gap: 30px;
  background-color: #e4e4e4;
}

.bg-footer {
  background-image: url("../grafiken/footer/bg-footer-paper.webp");
  background-repeat: no-repeat;
  background-position: right 10% top 30%;
}

.animate-text-footer {
  background-image: linear-gradient(-270deg, #141414 85%, #e4e4e4 15%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footer 4.5s linear infinite;
}

@keyframes footer {
  to {
  	background-position: 200%;
  }
}

.txt-footer-ueber {
  font-family: 'Audiowide';
  font-size: 14rem;
  font-weight: 400;
  text-decoration: underline;
}

.footer-oben {
  display: flex;
  justify-content: center;
  width: 80%;
  
}

.footer-unten {
  display: flex;
  width: 70%;
  justify-content: space-around;
  flex-direction: row;
  gap: 30px;
}

.footer-card {
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
}

.footer-card img {
  width: 100px;
}

.txt-footer-gr {
  font-family: 'Outfit';
  font-weight: 600;
  font-size: 3rem;
  color: #141414;
  text-decoration: underline;
  padding-bottom: 15px;
}

.footer-card span a {
  font-family: 'Outfit';
  font-weight: 300;
  font-size: 2rem;
  color: #141414;
  transition: all 0.5s;
}

.copy {
  font-family: 'Outfit';
  font-weight: 300;
  font-size: 1.5rem;
  color: #141414;
  transition: all 0.5s;
}

.footer-card a:hover {
  padding-left: 10px;
  color: #fd06e8;
  transition: all 0.5s;
}

/*ANCHOR - edia screens*/
@media screen and (max-width: 1200px) {
	.txt-footer-ueber {
    font-size: 10rem;
  }
  .txt-footer-gr {
    font-size: 2rem;
  }
  .footer-card span a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 864px) {
  .bg-footer {
    background-color: #ffcc00;
    background-size: contain;
  }
	.txt-footer-ueber {
    font-size: 6rem;
  }
  .txt-footer-gr {
    font-size: 2.5rem;
  }
  .footer-card span a {
    font-size: 2rem;
  }
  .footer-unten {
    flex-direction: column;
  }
  .footer-card {
    align-items: center;
  }
}

@media screen and (max-width: 500px) {
  .txt-footer-ueber {
    font-size: 4rem;
  }
  .txt-footer-gr {
    font-size: 2rem;
  }
  .footer-card span a {
    font-size: 1.5rem;
  }
  .copy {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 386px) {
  .txt-footer-ueber {
    font-size: 3.5rem;
  }
  .txt-footer-gr {
    font-size: 1.5rem;
  }
  .footer-card span a {
    font-size: 1.3rem;
  }
}
  

