/* ===== Sportveld Hero ===== */
.sportveld-hero {
  position: relative;
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background: url("../images/field.jpeg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 15, 0.55) 0%, rgba(14, 14, 15, 0.35) 45%, rgba(14, 14, 15, 0.85) 100%),
    linear-gradient(90deg, rgba(14, 14, 15, 0.6) 0%, rgba(14, 14, 15, 0.15) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.hero-card {
  backdrop-filter: blur(0px);
}

.hero-card--main {
  max-width: 620px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.88rem, 6.6vw, 4.8rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.hero-title span { color: var(--orange); }

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card--info,
.hero-card--hours {
  background: linear-gradient(155deg, rgba(24, 24, 26, 0.85), rgba(14, 14, 15, 0.65));
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.8rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-card--info:hover,
.hero-card--hours:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 16px 40px rgba(245, 166, 35, 0.18);
}

.info-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--orange);
}

.info-title .title-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.info-title .title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.4));
}

.info-text {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.info-list {
  list-style: none;
}

.info-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.info-list li:hover {
  transform: translateX(4px);
  color: var(--orange);
}

.info-list li::before {
  content: "⚽";
  position: absolute;
  left: 0;
  top: 0;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  transition: padding-left 0.25s ease;
}

.hours-list li:hover {
  padding-left: 0.4rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:first-child {
  font-weight: 600;
  color: var(--white);
}

.hours-list li span:last-child {
  color: var(--orange);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 480px) {
  .hero-card--info {
    padding: 1.2rem;
  }

  .hero-card--info .info-title {
    font-size: 1.1rem;
  }

  .hero-card--info .info-text {
    font-size: 0.85rem;
  }

  .hero-card--info .info-list li {
    font-size: 0.82rem;
    padding-left: 1.4rem;
  }

  .hero-card--info .info-title .title-icon {
    width: 18px;
    height: 18px;
  }
}