/* =========================================================
   doggo-footer.css
   Drop alongside doggo-footer.js — included once in your
   global stylesheet or per-page <link> is fine either way.
   Assumes your CSS custom properties (--blush-rgb, --cream,
   --cream-rgb, --ink-rgb, --slate-d, --bg) are already set
   on :root from your main styles.css.
   ========================================================= */

footer {
  border-top: 1px solid rgba(var(--blush-rgb), .10);
  padding: 28px 0 26px;
  background: var(--slate-d);
  color: var(--bg);
  font-size: 14px;
}

.footerGrid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footerLogo {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -.01em;
}

.footerHeading {
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.footerLinks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footerLinks a {
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
}

.footerLinks a:hover {
  color: white;
  text-decoration: underline;
}

.footerSocial {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.socialIcon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(var(--cream-rgb), .22);
  border: 1px solid rgba(var(--cream-rgb), .32);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.socialIcon svg {
  width: 18px;
  height: 18px;
  fill: var(--bg);
  opacity: .95;
  transition: transform .12s ease, opacity .12s ease;
}

.socialIcon:hover {
  transform: translateY(-2px);
  background: rgba(var(--cream-rgb), .38);
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), .18);
}

.socialIcon:hover svg {
  opacity: 1;
  transform: scale(1.08);
}

.footerBottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--cream-rgb), .28);
  text-align: center;
  color: rgba(var(--bg), .65);
  font-size: 13px;
}

.footerBottom a {
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  margin: 0 6px;
}

.footerBottom a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footerDivider {
  color: rgba(var(--bg), .30);
  margin: 0 4px;
}

.footerHours p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--bg);
}

.hoursNote {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .footerGrid { flex-direction: column; gap: 22px; }
}