/* =========================================
   FOOTER.CSS — Dayli Family Dental
   ========================================= */

.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
}

/* Col 1 — Brand */
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-5);
}

.footer-brand__logo-icon {
  width: 44px;
  height: 44px;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.footer-brand__tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-highlight);
}

.footer-brand__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-5);
  max-width: 38ch;
}

.footer-brand__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-brand__contact a,
.footer-brand__contact span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-brand__contact a:hover {
  color: var(--color-primary-highlight);
}

.footer-brand__contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

/* Col 2 & 3 — Links */
.footer-col__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-5);
}

.footer-col__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-col__links a:hover {
  color: var(--color-primary-highlight);
}

/* Hours */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-hours__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

.footer-hours__day {
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* Social */
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.footer-social__link:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-5);
  list-style: none;
}

.footer-bottom__links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom__links a:hover {
  color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
