/* ==========================================================================
   SITE FOOTER STANDALONE STYLES (Replaces bg-foreground text-background)
   ========================================================================== */

.site-footer {
  background-color: #1c1c1c; /* Maps to standard deep theme foreground */
  color: #ffffff;            /* Maps to standard layout text background */
  padding-top: 64px;
  padding-bottom: 64px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px; /* 7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .footer-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* 4-Column Grid Structure */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Headings */
.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px;
  color: #ffffff;
}

/* Column 1: Brand */
.footer-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Turns dark logo icons purely white matching brightness-0 invert */
.logo-invert {
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px 0;
  font-size: 1rem;
}

/* Column 2: Quick Links List */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-link-item:hover {
  color: #cca43b; /* Replaces Tailwind text-secondary color */
}

/* Column 3: Social Pills Flexbox */
.footer-socials-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-pill-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-pill-btn:hover {
  background-color: #cca43b; /* hover:bg-secondary */
  color: #1c1c1c;            /* hover:text-secondary-foreground */
  border-color: #cca43b;      /* hover:border-secondary */
}

/* Column 4: Facebook Live Feed Container Widget */
.fb-plugin-placeholder {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  min-height: 180px;
  box-sizing: border-box;
}

.fb-placeholder-icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.3);
}

.fb-placeholder-text {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.fb-visit-btn {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.fb-visit-btn:hover {
  background-color: #cca43b;
  color: #1c1c1c;
  border-color: #cca43b;
}

/* Bottom Bar Divider Line */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 32px;
  text-align: center;
}

.copyright-text {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}