/* Footer styles — aesthetic, responsive */
.site-footer {
  background:
    radial-gradient(
      circle at 10% 4%,
      rgba(244, 181, 40, 0.18),
      transparent 25%
    ),
    linear-gradient(180deg, #29150f, #0c0a08);
  color: rgba(255, 255, 255, 0.95);
  padding: 3rem 0 2rem;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
  border-top: 1px solid rgba(244, 181, 40, 0.2);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer .footer-grid.footer-grid-4 {
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
}

.site-footer .footer-col h4 {
  color: #ffd88b;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.footer-logo {
  max-width: 140px;
  display: block;
  margin-bottom: 0.75rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.site-footer a {
  text-decoration: none;
  transition:
    color var(--anim-duration) ease,
    transform var(--anim-duration) ease;
}

.site-footer a:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 0.4rem 0;
}

.footer-contact .footer-phone {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* Business hours column */
.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.footer-hours-row {
  display: flex;
  gap: 0.5rem;
  margin: 0.25rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-hours-day {
  font-weight: 600;
  min-width: 2.8rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-hours-time {
  color: rgba(255, 255, 255, 0.75);
}

.footer-hours-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.footer-hours-location {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-top: 0.35rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer .footer-developer a {
  color: var(--accent-gold);
  font-weight: 700;
}

.site-footer .footer-about p {
  max-width: 32rem;
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 1100px) {
  .site-footer .footer-grid.footer-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-grid,
  .site-footer .footer-grid.footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }
  .footer-logo {
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer {
    padding: 2rem 0 1.5rem;
  }
  .footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer-social a {
    margin-right: 0;
  }
  .footer-bottom {
    display: grid;
    gap: 0.35rem;
  }
  .footer-hours-row {
    justify-content: center;
  }
}

/* Utility: keep footer links accessible and easy to click */
.site-footer a:focus {
  outline: 3px solid rgba(11, 42, 107, 0.2);
  outline-offset: 3px;
}

