/*
 * Footer Styles - Corrected for Original 3-Column Layout
 */

.region-footer {


  color: #6c757d;
  font-size: 1em;
}

.region-footer h2 {
  display: none;
}

/* --- Main 3-Column Top Row --- */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 0.8fr;
  /* Defines the 3 columns */
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.main-website-link {
  color: #212529;
  text-decoration: none;
}

/* Column 1: Branding */
.footer-grid-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-grid-branding img {
  max-height: 70px;
  /* Adjust as needed */
}
.footer-site-off {
  margin: 0;
  color: #acacac;
}

.footer-site-name {
  font-weight: bold;
  font-size: 1.1em;
  color: #212529;
  margin: 0;
}

.footer-site-slogan {
  margin: 0;
}

/* Column 2: Contact Info */
.footer-grid-contact p {
  margin: 0;
  line-height: 1.6;
}

/* Column 3: Social Icons */
.footer-grid-social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-grid-social a {
  font-size: 1.5rem;
  color: #adb5bd;
  transition: color 0.2s ease-in-out;
}

.footer-grid-social a:hover {
  color: #067fc3;
}

.footer-grid-social .btn-contact {
  display: inline-flex;
  align-items: center;
  background-color: #dee2e6;
  color: #dc3545 !important;
  padding: 0.5rem;
  text-decoration: none;
  width: max-content;
  font-size: 14px;
  font-weight: 500;
}


/* --- Copyright Bar --- */
.footer-copyright-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #067fc3;
  color: white;
  padding: 1rem 2rem;
 
}

.footer-copyright-bar p {
  margin: 0;
}

.footer-copyright-bar a {
  color: white;
  text-decoration: underline;
}
.footer-copyright-bar a:hover {
  color: rgba(224, 234, 255, 0.76);
  text-decoration: none;
}

/* --- Permissions Text --- */
.footer-permissions {
  text-align: center;
  padding: 1rem 0;
  font-size: 1em;
  color: #9f9f9f;
}

.footer-permissions p {
  margin: 0;
}


/* --- Responsive adjustments --- */
@media (max-width: 992px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    /* Stack the 3 columns on tablets/mobile */
    text-align: center;
  }

  .footer-grid-branding,
  .footer-grid-social {
    justify-content: center;
    /* Center branding and social icons */
  }
}