/**
 * LSC Footer Plugin — assets/footer.css
 * Styles for the [lsc_footer] shortcode.
 *
 * @package lsc-footer
 */

/* ---- Top section ---- */
.lsc-footer__top {
  background-color: var(--lsc-dark, #1a2f3d);
  padding: 4rem 0 3rem;
}

.lsc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

/* Logo & About column */
.lsc-footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.lsc-footer__logo-img { max-height: 60px; max-width: 180px; width: auto; }

.lsc-footer__logo-text {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.5rem;
  color: #fff;
}

.lsc-footer__tagline {
  font-size: .9375rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
  font-style: italic;
}

.lsc-footer__about {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Social icons */
.lsc-footer__social {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.lsc-footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease;
}

.lsc-footer__social-link:hover {
  background-color: var(--lsc-accent, #c4873a);
  color: #fff;
}

/* Column headings */
.lsc-footer__col-title {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.0625rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* Contact list */
.lsc-footer__contact-list {
  list-style: none;
}

.lsc-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}

.lsc-footer__contact-list .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--lsc-primary-light, #5a9dbe);
  flex-shrink: 0;
  margin-top: .1rem;
}

.lsc-footer__contact-list a,
.lsc-footer__contact-list address {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-style: normal;
  transition: color 200ms ease;
}

.lsc-footer__contact-list a:hover { color: #fff; }

/* Nav lists */
.lsc-footer__nav-list { list-style: none; }

.lsc-footer__nav-list li { margin-bottom: .5rem; }

.lsc-footer__nav-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color 200ms ease;
}

.lsc-footer__nav-list a::before {
  content: '›';
  color: var(--lsc-accent, #c4873a);
  font-size: 1rem;
}

.lsc-footer__nav-list a:hover { color: #fff; }

/* ---- Bottom bar ---- */
.lsc-footer__bottom {
  background-color: rgba(0,0,0,.3);
  padding: 1.25rem 0;
}

.lsc-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.lsc-footer__land-ack {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  width: 100%;
  line-height: 1.6;
  margin: 0;
}

.lsc-footer__copyright {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.lsc-footer__legal-nav a {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color 200ms ease;
}

.lsc-footer__legal-nav a:hover { color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .lsc-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .lsc-footer__col--about { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .lsc-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .lsc-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
