/* CopyBoss Footer Effects - Canonical from analyzer.html */

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.social-link {
  color: #8fa3c7;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-link:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
  left: 100%;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-link {
  color: #8fa3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.link-separator {
  color: #8fa3c7;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .social-icons {
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .social-link {
    font-size: 18px;
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .footer-links {
    gap: 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .social-icons {
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  
  .social-link {
    font-size: 16px;
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 10px;
  }
}
