/* Footer Styles - shared across all pages (same as index) */
/* Targets the injected footer from footer.js: .site-footer, .footer-container, .footer-section */

.site-footer {
  background-color: #1e3c72;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-logo {
  width: 280px;
  margin-bottom: 20px;
  display: block;
}

.site-footer .footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.site-footer .footer-section ul {
  list-style: none;
  padding: 0;
}

.site-footer .footer-section ul li {
  margin-bottom: 8px;
}

.site-footer .footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer .footer-section ul li a:hover {
  color: #FFB703;
}

.site-footer .footer-section .social-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer .footer-section .social-media a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

.site-footer .footer-section .social-media svg {
  display: block;
}

.site-footer .footer-section .social-media img {
  width: 24px;
  height: auto;
  display: block;
}

.site-footer .footer-section .social-media .social-label {
  font-size: 14px;
  color: #ffffff;
}

.site-footer .footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Footer - single column, centered, social side by side on mobile */
@media (max-width: 768px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .site-footer .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .site-footer .footer-logo {
    width: 200px;
    margin: 0 auto 20px;
  }

  .site-footer .footer-section h4 {
    font-size: 15px;
  }

  .site-footer .footer-section ul li a {
    font-size: 13px;
  }

  .site-footer .footer-section .social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .site-footer .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .site-footer .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .site-footer .footer-logo {
    width: 150px;
    margin: 0 auto 20px;
  }

  .site-footer .footer-section h4 {
    font-size: 14px;
  }

  .site-footer .footer-section ul li a {
    font-size: 12px;
  }

  .site-footer .footer-section .social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .site-footer .footer-bottom {
    font-size: 12px;
  }
}
