.footer {
  background-color: var(--bkg-color-footer);
  color: var(--text-color);
  padding: 40px;
  text-align: center;
  font-family: "Rethink Sans", "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* För att få logotypen, text och länkar att placera sig ordentligt */
  height: fit-content; /* Justera höjden på footern */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1; /* Gör att innehållet växer för att ta upp tillgängligt utrymme */
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-info p {
  margin: 5px 0;
  padding: 5px 0;
  font-size: 16px;
}

.footer-links ul {
  list-style-type: none;
  padding: 0 15px;
  margin: 15px 0;
}

.footer-links li {
  display: inline-block;
  margin: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--acc-color);
}

.footer-social {
  margin-top: 20px;
  margin-bottom: 50px;
}

.footer-social a {
  margin: 15px;
}

.footer-social img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.2);
}


/* Responsiv justering för mobil */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
  }

  .footer-info p, .footer-links a {
      font-size: 14px;
  }

  .footer-social img {
      width: 20px;
      height: 20px;
  }
}


/* ------------------ Extra mobilanpassning ------------------ */
@media (max-width: 768px) {
  .ball {
    filter: blur(60px);
  }
  .ball1, .ball2, .ball3, .ball4, .ball5, .ball6, .ball7, .ball8 {
    width: 350px;
    height: 350px;
  }
  .hero {
    height: 70vh;
    padding: 0 5%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  p {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 5%;
  }
  .footer-links li {
    display: block;
    margin: 5px 0;
  }
  .footer-social a {
    margin: 10px;
  }
}