/*
 * Footer Styles
 * 
 * @package Viva_Magenta_V1
 */

.site-footer {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: 3rem 0 2rem;
  margin-bottom: 0;
  margin-top: 0;
}

.site-footer::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.social-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
}

.contact-item a:hover {
  color: var(--text-white);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* Credit line placed above separator */
.footer-credit { margin-bottom:1.75rem; text-align:center; font-size:.85rem; letter-spacing:.3px; }
.footer-credit p { margin:0; color: rgba(255,255,255,.55); }
.footer-credit a { color: var(--primary-color); text-decoration:none; font-weight:500; }
.footer-credit a:hover { color: var(--text-white); }
.footer-credit .heart { color: var(--primary-color); animation: heartbeat 1.4s ease-in-out infinite; display:inline-block; transform-origin:center; }
@keyframes heartbeat { 0%, 28%, 70%, 100% { transform: scale(1); } 14%, 42% { transform: scale(1.25); } }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--text-white);
}
