/* Footer palette uses CSS custom props defined in main.css:
   --charcoal-blue, --frosted-mint, --light-green
*/

.footer-nf {
  background-color: var(--charcoal-blue);
  color: var(--frosted-mint);
}

/* Company name */
.footer-brand {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--frosted-mint);
}

/* Address block */
.footer-text-muted {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(218, 247, 220, 0.85); /* frosted mint, slightly muted */
}

/* Column headings (e.g. About Us, Contact Us) */
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

/* List + links */
.footer-list {
  font-size: 0.85rem;
}

.footer-link {
  color: var(--frosted-mint);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--light-green);
  text-decoration: underline;
}

/* Inline link in meta line */
.footer-link-inline {
  font-size: 0.85rem;
}

/* Social icons */
.footer-social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(218, 247, 220, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.footer-social-icon:hover {
  background-color: rgba(158, 228, 147, 0.1);
  border-color: var(--light-green);
}

/* Divider + meta line */
.footer-divider {
  border-color: rgba(218, 247, 220, 0.35) !important;
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(218, 247, 220, 0.9);
}
