@media (max-width: 768px) {
  footer {
    padding: 40px 20px 30px;
  }

  .footer-inner {
    max-width: 100%;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
  }

  .footer-contact,
  .footer-hours {
    min-width: 100%;
  } 

  .footer-contact h1,
  .footer-hours h1 {
    margin-left: 0;
    margin-bottom: 20px;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-item {
    gap: 10px;
    margin-bottom: 15px;
  }

  .contact-item p {
    font-size: 14px;
    line-height: 1.4;
  }

  .hours-row {
    font-size: 14px;
  }

  .footer-social {
    margin: 30px 0 15px;
  }

  .footer-social img {
    width: 24px;
    margin: 0 10px;
  }

  .payments img {
    height: 40px;
    margin: 0 6px 12px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}



:root{
  --main_FARBE:#F6EFE0;
  --secondary_FARBE:#A79689;
  --primary_CNONTRAST:#573C32;
  --secondary_CONTRAST:#2C1E19;
  --black_FARBE:#000000;
}

footer {
  background-color: var(--secondary_FARBE);
  padding: 60px 80px 40px;
  color: var(--black_FARBE);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto; 
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
}

.footer-contact h1{
  font-size: 22px;
  margin-left: 120px;
  margin-bottom: 25px;
  min-width: 280px;
}

.footer-hours h1 {
  font-size: 22px;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-item img {
  width: 20px;
  height: 20px;
}

.contact-item p {
  margin: 0;
  line-height: 1.5;
}

.footer-hours {
  min-width: 280px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hours-row span {
  color: var(--secondary_CONTRAST);
}

.hours-row strong {
  font-weight: 700;
}

.footer-social {
  text-align: center;
  margin: 40px 0 20px;
}

.footer-social img {
  width: 22px;
  margin: 0 12px;
  cursor: pointer;
}

footer hr {
  border: none;
  border-top: 2px solid var(--black_FARBE);
  margin: 20px 0;
}

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

.payments img {
  height: 50px;
  margin: 0 8px 15px;
}

.footer-bottom p {
  font-size: 10px;
}


