/**
 * Shared footer - same structure on all pages, colors adapt to page theme.
 * Body classes: .page-pump (red), .page-diesel (blue), .page-transport (yellow)
 */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 1rem;
}
@media (min-width: 640px) {
  .site-footer { padding: 2.5rem 1.5rem; }
}

.site-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .site-footer-grid {
    grid-template-columns: 1fr auto;
    gap: 2rem;
    text-align: left;
    align-items: start;
  }
}

.site-footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem 0;
}
.site-footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}
.site-footer-details {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}
.site-footer-details p {
  margin: 0.25rem 0;
}
.site-footer-details a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.site-footer-details a:hover {
  text-decoration: underline;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .site-footer-links {
    align-items: flex-end;
    justify-content: flex-start;
  }
}
.site-footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
}
.site-footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

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

/* Theme: Pump Finder (red) */
body.page-pump .site-footer {
  background-color: #991b1b;
}

/* Theme: Diesel Home Delivery (blue) */
body.page-diesel .site-footer {
  background-color: #1e40af;
}

/* Theme: Your Easy Transport (yellow/amber) */
body.page-transport .site-footer {
  background-color: #b45309;
}

/* Theme: About (Violet) */
body.page-about .site-footer {
  background-color: #6d28d9;
}

/* Theme: Terms (Indigo) */
body.page-terms .site-footer {
  background-color: #4338ca;
}

/* Theme: Privacy (Green) */
body.page-privacy .site-footer {
  background-color: #15803d;
}

/* Theme: Return (Orange) */
body.page-return .site-footer {
  background-color: #ea580c;
}
