/* footer.css — Template 2: Neon Glass */

.footer {
  margin-top: auto;
  position: relative;
  padding: 60px 0 40px;
}

/* Glowing top line separator */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.4), transparent);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.footer-info a {
  color: var(--accent-1);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-info a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 12px var(--accent-glow);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.4);
  box-shadow: var(--glass-highlight), 0 10px 20px rgba(129, 140, 248, 0.2);
}

.social-links img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.social-links a:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .footer { padding: 40px 0 30px; }
  .footer::before { left: 5%; right: 5%; }
  .footer-info p { font-size: 0.85rem; }
}