/* ====================================
   FOOTER STYLES
   ==================================== */

/* Footer Container */
.footer {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

/* Footer List Items */
.footer ul li {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  font-family: inherit;
}

.footer ul li a {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  font-family: inherit;
}

/* Footer Link Hover Effect */
.footer .text-white:hover {
  opacity: 0.8;
}

/* Social Icons */
.social-icons a {
  transition: transform 0.3s;
}

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

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
