/* ================================
   SaveThem Footer – HARD OVERRIDE
   ================================ */

/* Reset footer only (do NOT touch site) */
.site-footer,
.site-footer * {
  box-sizing: border-box;
}

/* MAIN FOOTER */
.site-footer {
  background: #3f8f46;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

/* WRAPPER */
.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 36px 14px 0;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 50px;
}

/* SECTIONS */
.footer-section h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  color: #ffb703;
  margin-bottom: 18px;
}

/* TEXT */
.footer-section p,
.footer-section address {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 12px;
  font-style: normal;
  color: #ffffff;
}

/* LINKS */
.footer-section a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.25s ease;
}

.footer-section a:hover {
  color: #ffb703;
}

/* LISTS */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

/* ICON FIX (VERY IMPORTANT) */
.site-footer i {
  font-size: 15.8px;
  margin-right: 8px;
  color: #ffffff;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a i {
  margin: 0;
}

.social-links a:hover {
  background: #ffb703;
  color: #000000;
}

/* BOTTOM AREA */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 40px;
  padding: 30px 20px 40px;
  text-align: center;
}

/* FORCE SAME FONT EVERYWHERE */
.footer-bottom div,
.footer-bottom p {
  font-size: 14.5px !important;
  line-height: 1.7;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-section h3 {
    font-size: 20px;
  }
}

/* ================================
   FIX: Italic heading on inner pages
   ================================ */

/* Neutralize address default italics */
.site-footer address {
  font-style: normal !important;
}

/* Force heading style */
.site-footer address h3 {
  font-style: normal !important;
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
}

/* =====================================
   FOOTER FINAL HARD FIX (NO CONFLICT)
   ===================================== */

/* LOCK FOOTER TYPOGRAPHY */
.site-footer,
.site-footer * {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important; /* 👈 FIX LIGHT TEXT */
  color: #ffffff !important;
}

/* Footer container */
.site-footer {
  background: #3f8f46;
}

/* Wrapper spacing (reduced) */
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 12px 0;
}

/* Headings */
.site-footer h3 {
  font-family: 'League Spartan', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #ffb703 !important;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
}

/* Address – kill italics */
.site-footer address {
  font-style: normal !important;
}

/* Paragraph spacing */
.site-footer p {
  margin-bottom: 8px;
}

/* LINKS */
.site-footer a {
  font-weight: 500 !important;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffb703 !important;
}

/* =========================
   ICON HARD FIX (IMPORTANT)
   ========================= */

/* Generic icons */
.site-footer i,
.site-footer .fa,
.site-footer .fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: inline-block;
  color: #ffffff !important;
}

/* Brand icons (Instagram, LinkedIn, etc.) */
.site-footer .fab,
.site-footer .fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Icon spacing */
.site-footer i {
  font-size: 16px !important;
  margin-right: 8px;
}

/* =========================
   SOCIAL ICONS
   ========================= */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: #ffb703;
}

.social-links a i {
  margin: 0;
  color: #FFFFFF !important;
}

/* =========================
   FOOTER BOTTOM
   ========================= */
.footer-bottom {
  margin-top: 26px;
  padding: 22px 12px 30px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.footer-bottom div {
  font-size: 14.3px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

/* =========================
   FOOTER BOTTOM SPACING FIX
   ========================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 36px;
  padding: 26px 14px 34px;
  text-align: center;
}

/* Sections spacing */
.footer-bottom > div {
  margin-bottom: 14px;
}

/* Title */
.footer-title {
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 6px;
}

/* Locations text */
.footer-text {
  font-size: 14.8px;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.95;
}

/* Copyright */
.footer-copy {
  font-size: 14.4px;
  font-weight: 600;
  margin-top: 6px;
}

/* Registration info */
.footer-meta {
  font-size: 13.8px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Disclaimer */
.footer-disclaimer {
  font-size: 13.6px;
  line-height: 1.65;
  max-width: 1000px;
  margin: 8px auto 0;
  opacity: 0.9;
}

/* ================================
   MOBILE FOOTER LOCK (FINAL FIX)
   ================================ */

@media (max-width: 768px) {

  .site-footer {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .site-footer .footer-wrapper {
    padding: 28px 14px 0 !important;
  }

  .site-footer .footer-top {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .site-footer .footer-section h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .site-footer p,
  .site-footer li,
  .site-footer a,
  .site-footer div {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .site-footer .footer-bottom {
    padding: 22px 12px 30px !important;
  }

  .site-footer .footer-bottom div {
    margin-bottom: 10px !important;
  }

  .site-footer .social-links {
    gap: 12px !important;
  }

  .site-footer .social-links a {
    width: 36px !important;
    height: 36px !important;
  }
}


