/* --- Footer base --- */
.site-footer {
  /* 1. Fondo Múltiple: Capa de Opacidad + Imagen */
  background-image:
    /* CAPA DE OPACIDAD: degradado negro semitransparente */ linear-gradient(
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    /* IMAGEN DE FONDO: Asegúrate de reemplazar la ruta de abajo */
      url("Footer_Image.webp");

  /* 2. Control de la Imagen */
  background-size: cover; /* Cubre todo el espacio */
  background-position: center center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita repetición */
  background-color: var(--color-green); /* Color de respaldo */

  /* 3. Propiedades de estilo que ya tenías */
  color: rgba(255, 255, 255, 0.88); /* texto claro */
  font-family: var(--font-helvetica);
  padding: clamp(28px, 4vw, 52px) 4vw;
  line-height: 1.45;
  font-size: clamp(14px, 1.1vw, 18px);
}

/* Container */
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

/* Columns layout */
.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: clamp(18px, 2.2vw, 48px);
  align-items: start;
  margin-bottom: 28px;
}

/* Column headings */
.site-footer h3 {
  margin: 0 0 16px 0;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 500;
  color: var(--color-bg);
}

/* Hours column */
.hours .day {
  margin: 0 0 10px 0;
  opacity: 0.95;
  font-weight: 500;
}
.hours .time {
  display: block;
  margin-top: 6px;
  font-weight: 200;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  max-width: fit-content;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}
.footer_icon {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
}
.footer_icon svg {
  display: block;
}

/* Links */
.contact-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.contact-link:hover,
.site-footer a:hover {
  text-decoration: underline;
}

/* About paragraph */
.about p {
  margin: 0;
  max-width: 44rem;
  opacity: 0.95;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 0.9vw, 16px);
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive: tablets */
@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .about {
    grid-column: 1 / -1; /* about spans both columns */
  }
  .site-footer {
    padding-bottom: 28px;
  }
}

/* Responsive: mobile */
@media (max-width: 560px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer_icon {
    min-width: 30px;
    min-height: 30px;
  }
}

/* Small visual tweaks for contrast */
@media (prefers-reduced-motion: no-preference) {
  .footer_icon svg {
    transition: transform 0.18s ease;
  }
  .contact-list li:hover .footer_icon svg {
    transform: translateY(-2px);
  }
}
