/* ============================================================
   BBN CATERERS — FOOTER SECTION (High Contrast & Consistent)
   ============================================================ */

.footer {
  background: var(--color-dark);
  color: rgba(243, 239, 232, 0.90); /* Champagne Cream with 90% opacity */
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
}

/* ─── Main Footer Grid ─── */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(137, 120, 92, 0.18);
  margin-bottom: var(--space-8);
}

/* ─── Brand Column ─── */
.footer__brand {
  /* first column */
}

.footer__logo {
  margin-bottom: var(--space-5);
  display: block;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(10%) saturate(600%) hue-rotate(10deg) brightness(90%);
  /* Gives warm taupe tint to warm logo */
  opacity: 1.0; /* Full visibility */
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-style: italic;
  color: rgba(209, 176, 136, 0.95); /* Rich Gold/Stone Beige */
  margin-bottom: var(--space-6);
  line-height: 1.5;
  max-width: 260px;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(243, 239, 232, 0.78); /* High contrast light gray/cream */
  line-height: 1.75;
  font-weight: var(--fw-light);
  max-width: 280px;
}

/* ─── Brand Contact Info ─── */
.footer__contacts {
  margin-top: var(--space-5);
}

.footer__contact-item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(243, 239, 232, 0.78);
  line-height: 1.6;
}

.footer__contact-label {
  font-weight: var(--fw-medium);
  color: rgba(209, 176, 136, 0.95);
  margin-right: var(--space-1);
}

.footer__contact-link {
  color: rgba(243, 239, 232, 0.90);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-bottom: 1px dashed rgba(243, 239, 232, 0.3);
}

.footer__contact-link:hover {
  color: var(--color-beige-light);
  border-bottom-color: var(--color-beige-light);
}

/* ─── Link Columns ─── */
.footer__col-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(209, 176, 136, 0.95); /* High contrast Gold/Stone Beige */
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(243, 239, 232, 0.70); /* Champagne Cream with 70% opacity */
  transition: color var(--transition-fast);
  font-weight: var(--fw-light);
}

.footer__link:hover {
  color: var(--color-beige-light);
}

/* ─── Bottom Bar ─── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(243, 239, 232, 0.65); /* Increased contrast */
  font-weight: var(--fw-light);
  letter-spacing: 0.04em;
}

.footer__bottom-tagline {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-style: italic;
  color: rgba(209, 176, 136, 0.85); /* Rich Gold/Stone Beige */
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__legal-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(243, 239, 232, 0.65); /* Increased contrast */
  font-weight: var(--fw-light);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-beige-light);
}

.footer__legal-separator {
  color: rgba(243, 239, 232, 0.30); /* Increased contrast */
  font-size: 0.5rem;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
