/* Modern Footer Styles */
.site-footer-bottom {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #6d42e6;
  border-top: 1px solid rgba(236, 234, 253, 0.5);
  box-shadow: 0 -8px 32px rgba(188, 166, 247, 0.15);
  padding: 3rem 0 2rem 0;
  font-size: 1.1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-social a {
  color: #6d42e6;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(236, 234, 253, 0.5);
}

.footer-social a:hover {
  color: #fff;
  background: linear-gradient(135deg, #7f5fff 0%, #5e7fff 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(127, 95, 255, 0.2);
}

.footer-info {
  color: #6d42e6;
  font-weight: 500;
  line-height: 1.6;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-footer-bottom {
    padding: 2.5rem 0 1.5rem 0;
  }
  
  .footer-social a {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .site-footer-bottom {
    padding: 2rem 0 1.2rem 0;
  }
  
  .footer-social {
    gap: 1rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  
  .footer-info {
    font-size: 0.95rem;
  }
}
