/* Footer styles */
.footer-container {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 2;
  left: 0;
  bottom: 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
  transform: translateY(0); /* Always visible on mobile */
  border-top: 3px solid #C80000; /* 🔴 Red line at the top */
}

/* Desktop styles */
@media (min-width: 769px) {
  .footer-container {
    transform: translateY(100%); /* Hidden below viewport on desktop */
    transition: transform 0.5s ease; /* Smooth slide-up animation */
    flex-direction: row;
    align-items: center;
    padding: 0 20px;
  }

  .footer-container.visible {
    transform: translateY(0); /* Slide up to visible position */
  }
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}



.raleway-copyright {
        font-family: "Raleway", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-size: 11px;
        font-style: normal;
        color: #fff;
      }






.footer-text {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  order: 1;
}

.social-icons-container {
  display: flex;
  justify-content: center;
  order: 2;
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 30px;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
  pointer-events: auto; /* Re-enable clicks for social links */
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons img {
  height: 30px;
  width: 30px;
}

/* Arrow Up (Scroll-to-Top Button) */
.arrow-up {
  position: fixed;
  right: 20px;
  bottom: 35px;
  z-index: 1001;
}

.arrow-up img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-up img:hover {
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    height: 80px;
    padding: 10px 10px;
  }

  .arrow-up {
    right: 15px;
    bottom: 10px;
  }

  .arrow-up img {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 769px) {
  .footer-text {
    text-align: left;
    width: auto;
    margin-bottom: 0;
    flex: 1;
    order: 0;
  }

  .social-icons-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    order: 0;
  }

  .arrow-up {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
}