/**
 * TURF Sports Facility — Global Footer Styles
 */

.batting-global-footer {
  background: var(--footer-bg, #1E2736);
  color: var(--ds-footer-text, #7A7A7A);
  padding: 36px 0 0;
  margin-top: 60px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.batting-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Grid — logo fixed, info column wider to fit one-line address */
.batting-footer-grid {
  display: grid;
  grid-template-columns: 150px 1fr 2.2fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  align-items: start;
}

@media (max-width: 960px) {
  .batting-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .batting-footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .batting-footer-container {
    padding: 0 20px;
  }

  .batting-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .batting-footer-brand {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .batting-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .batting-footer-hours-line {
    flex-wrap: wrap;
  }
}

/* Brand */
.batting-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.batting-footer-logo-link {
  display: inline-block;
}

.batting-footer-logo-img {
  width: 100%;
  max-width: 115px;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: opacity 180ms ease;
}

.batting-footer-logo-img:hover {
  opacity: 0.75;
}

.batting-footer-tagline {
  font-size: 0.8rem;
  color: #556070;
  line-height: 1.55;
  margin: 0;
}

/* Column headings */
.batting-footer-links h3,
.batting-footer-info h3,
.batting-footer-social h3 {
  font-family: "Oswald", sans-serif;
  color: #cccccc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* Links */
.batting-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.batting-footer-links a {
  color: #7A7A7A;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 180ms ease;
}

.batting-footer-links a:hover {
  color: #0085ff;
}

/* Info column */
.batting-footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.batting-footer-info h3 {
  margin-top: 12px;
}

.batting-footer-info h3:first-child {
  margin-top: 0;
}

/* Hours — single line with pipe separators */
.batting-footer-hours-line {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.batting-footer-hours-line span {
  color: #7A7A7A;
  font-size: 0.875rem;
}

.batting-footer-hours-line .pipe {
  color: rgba(255, 255, 255, 0.2);
}

.batting-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

/* Address — no wrap */
.batting-address-link a {
  color: #7A7A7A;
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: color 180ms ease;
}

.batting-address-link a:hover {
  color: #0085ff;
}

/* Social */
.batting-footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.batting-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 14px;
  color: #7A7A7A;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 180ms ease, color 180ms ease;
  width: fit-content;
}

.batting-social-link:hover {
  background: rgba(255, 60, 60, 0.15);
  color: #ff5555;
}

.batting-social-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* @handle tag — shown below the button */
.batting-social-handle {
  font-size: 1rem;
  font-weight: 600;
  color: #0085ff;
  letter-spacing: 0.01em;
}

/* Bottom bar */
.batting-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.batting-footer-bottom p {
  color: #455060;
  font-size: 1.00rem;
  margin: 0;
}