/* ========================= */
/* 🔚 Site Footer – Glass UI */
/* ========================= */

.site-footer {
  background: rgba(0, 0, 0, 0.6);
  color: #999;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ✍️ Paragraphs */
.site-footer p {
  margin: 0;
  line-height: 1.6;
}

/* 🔗 Links */
.site-footer a {
  color: #4dd8ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #66eaff;
}

/* 🌞 Light Mode */
body.light-mode .site-footer {
  background: rgba(255, 255, 255, 0.7);
  color: #555;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.05);
}

body.light-mode .site-footer a {
  color: #007acc;
}

body.light-mode .site-footer a:hover {
  color: #005f99;
}

/* 📱 Mobile Adjustments */
@media (max-width: 600px) {
  .site-footer {
    font-size: 0.85rem;
    padding: 1.5rem 1rem;
  }

  .site-footer p {
    padding: 0 0.5rem;
    line-height: 1.5;
  }
}
