/* Shared Footer Styles - Every Social Media
   This file ensures consistent dark footer styling across all pages */

/* Footer container */
.site-footer {
  padding: 2.5rem 3rem;
  text-align: center;
  background: #070E18;
}

/* Footer logo/brand */
.site-footer .footer-logo {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.15rem;
  color: #FDF9F2;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Footer description text */
.site-footer p {
  font-size: 0.8rem;
  color: #E5D3B9;
  margin: 0.5rem 0;
}

/* Footer navigation links container */
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* Footer link styling - ensures visibility on dark background */
.site-footer a,
.site-footer .footer-links a {
  color: #E5D3B9;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-footer a:visited,
.site-footer .footer-links a:visited {
  color: #E5D3B9;
}

.site-footer a:hover,
.site-footer .footer-links a:hover {
  color: #FFFFFF;
  opacity: 1;
}

.site-footer a:focus-visible,
.site-footer .footer-links a:focus-visible {
  outline: 2px solid #E5D3B9;
  outline-offset: 3px;
  border-radius: 6px;
  opacity: 1;
}

/* Copyright line */
.site-footer .copyright {
  margin-top: 1rem;
  opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .site-footer {
    padding: 2rem 1.5rem;
  }
  
  .site-footer .footer-links {
    gap: 0.75rem 1.5rem;
  }
}
