/* ========================================
   Dark Footer — matches sky theme
   Clean, minimal, responsive
   ======================================== */

:root {
  --footer-bg: rgba(6, 9, 15, 0.75);
  --footer-border: rgba(255, 255, 255, 0.08);
  --footer-text: rgba(255, 255, 255, 0.85);
  --footer-subtle: rgba(255, 255, 255, 0.6);
  --footer-accent: #8b5cf6; /* matches site purple accent */
}

.main-footer {
  position: relative;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    var(--footer-bg)
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid var(--footer-border);
  padding: 48px 24px 24px;
}

/* Hide legacy visual effects */
.main-footer .background-effects { display: none; }

.main-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.name-title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--footer-text);
}

.decorative-line {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--footer-accent), transparent);
  margin: 14px auto 8px;
  border-radius: 2px;
}

.social-section { margin-top: 8px; }
.social-title {
  font-size: 0.95rem;
  color: var(--footer-subtle);
  margin-bottom: 12px;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--footer-accent);
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  border-top: 1px solid var(--footer-border);
  padding-top: 16px;
}

.copyright-info span,
.love-message { color: var(--footer-subtle); }

/* Heart micro-bounce on hover */
.heart-wrapper { display: inline-flex; align-items: center; }
.heart-wrapper:hover .heart-emoji { transform: scale(1.08); }
.heart-emoji { transition: transform 0.2s ease; }

/* Responsive */
@media (max-width: 768px) {
  .main-footer { padding: 36px 16px 18px; }
  .name-title { font-size: 2rem; }
  .bottom-section { flex-direction: column; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .social-link, .heart-emoji { transition: none; }
}