/* ===== FOOTER COMPONENT CSS ===== */

/* No local variable definitions. All theme variables come from global theme files. */

.footer {
  text-align: center;
  padding: 30px;
  margin-top: 50px;
  position: relative;
}

.footer-decoration {
  font-size: 2em;
  color: var(--primary-maroon);
  margin: 10px 0;
  animation: pulse 2s ease-in-out infinite;
}

[data-theme="dark"] .footer-decoration {
  color: var(--gold);
  text-shadow: var(--text-glow);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.footer-text {
  color: var(--text-primary);
  opacity: 0.7;
  font-style: italic;
}

[data-theme="dark"] .footer-text {
  color: var(--text-primary);
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
  .footer {
    padding: 25px 20px;
    margin-top: 40px;
  }

  .footer-decoration {
    font-size: 1.8em;
  }

  .footer-text {
    font-size: 0.95em;
  }
}
