.footer {
  padding: 1rem 1rem;
  background-color: black;
  color: white;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px; 
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.footer-column {
  flex: 1 1 300px;
  padding: 10px; 
  text-align: left;
  box-sizing: border-box;
}

.center-column {
  text-align: center;
}

.footer h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 7px; 
}

h5 + .aesthetfooter {
  margin-top: 25px; 
}


.adastralogofooter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.adastralogofooter img {
  display: block;
  margin: 0 auto;
}

.adastralogofooter .aesthetfooter {
  margin-top: 6px; 
  text-align: center;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.6; 
  letter-spacing: 0.3px;
}

.adastralogofooter .aesthetfooter br {
  margin-bottom: 4px; 
  display: block;
  content: "";
}

.social-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.social-item span {
  color: inherit;
  cursor: default;
}

.social-icon {
  width: 22px;
  height: auto;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Socials alignment */
.socials-column {
  text-align: right;
}

.socials-list {
  display: flex;
  flex-direction: column;
  gap: 6px; 
  align-items: flex-end;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px; 
  }

  .footer-column {
    width: 100%;
    text-align: center;
    padding: 8px 0; 
  }

  .socials-column {
    text-align: center;
  }

  .socials-list {
    align-items: center;
    gap: 5px; 
  }

  .social-item {
    justify-content: center;
    margin-bottom: 4px; 
  }
}
