/* -----------------------------------
   DIANNE POLE PSYCHOTHERAPY SITE - FOOTER CSS
----------------------------------- */

.site-footer {
  background-color: red;
  background: #eee7df;
  border-top: 1px solid #d8cabd;
  color: #5b524b;
  font-family: var(
    --dp-sans,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
  margin-top:1.5rem;
}

/* Outer footer spacing */
.footer-widgets {
  background: transparent;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem clamp(0.7rem, 3vw, 2rem);
  box-sizing: border-box;
}

/* Align footer with main site content */
.footer-widgets-container {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Main footer grid */
.inside-footer-widgets {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.2fr;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  align-items: start;
}

/* Remove WP/GeneratePress excess spacing */
.footer-widgets .widget,
.footer-widgets .wp-block-group,
.footer-widgets .wp-block-columns,
.footer-widgets .wp-block-column {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* Widget typography */
.site-footer .widget {
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer .widget-title {
  font-family: var(--dp-serif, Georgia, "Times New Roman", serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  color: #2f2b27;
  margin-bottom: 1rem;
}

/* Menu lists */
.site-footer ul,
.site-footer .widget_nav_menu ul,
.site-footer .wp-block-navigation__container {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li,
.site-footer .wp-block-navigation-item {
  margin-bottom: 0.42rem;
}

/* Links */
.site-footer a {
  color: #5c5148;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: #2f2b27;
}

/* Contact + BACP column */
.footer-widget-4 {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  white-space: nowrap;
}

/* Contact grid */
.footer-widget-4 .is-layout-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.65rem;
  row-gap: 0.55rem;
  align-items: center;
}

/* Contact text */
.footer-widget-4 .dp-phone-number,
.footer-widget-4 .dp-email-address {
  margin: 0;
  line-height: 1.8;
  white-space: nowrap;
}

/* Icons */
.dp-phone-icon,
.dp-mail-icon,
.dp-email-icon {
  width: 1.6rem;
  max-width: 1.6rem;
  height: auto;
  margin: 0;
}

/* BACP badge */
.dp-bacp-logo {
  max-width: 12rem;
  height: auto;
  margin-top: 0.4rem;
}

/* Images */
.site-footer img {
  max-width: 100%;
  height: auto;
}

/* Bottom copyright bar */
.site-info {
  display: none;
  background: #e5dacf;
  border-top: 1px solid #d8cabd;
  color: #7a6f65;
  font-size: 0.82rem;
  padding: 0;
}

/* Tablet */
@media (max-width: 980px) {
  .inside-footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 700px) {
  .footer-widgets {
    padding: 2.6rem 1.25rem;
  }

  .inside-footer-widgets {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-footer .widget-title {
    margin-bottom: 0.45rem;
  }

  .site-footer li,
  .site-footer .wp-block-navigation-item {
    margin-bottom: 0.32rem;
  }

  .footer-widget-4 {
    gap: 0.9rem;
  }
}