.content {
  font-family: 'Barlow', sans-serif;
}

  #venuesHeading {
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
  }

  #venuesSubheading {
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 57.01px;
    letter-spacing: -0.6px;
  }

  #venuesSubheading span {
    color: #0D97E9;
  }


  #venuesGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
   #sliderHeading {
    font-size: 2rem;
    text-align: center;
  }

  #sliderSubheading {
    font-size: 2rem;
    text-align: center;
    color: #555;
  }

  venue-item {
    flex-basis: 24%;
    margin-bottom: 20px;
  }

  .venue-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px
  }
 



  .venue-item {
    position: relative;
    overflow: hidden;
  }

  .venue-item:hover {
    color: #007bff;
  }


  .court-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
  }

.court-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.court-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.court-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.court-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.court-card:hover .court-image-container img {
  transform: scale(1.05);
}

.court-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.available {
  background-color: rgba(46, 213, 115, 0.9);
  color: white;
}

.status-badge.not-available {
  background-color: rgba(255, 71, 87, 0.9);
  color: white;
}

.court-card-body {
  padding: 1.25rem;
}

.court-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.court-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Barlow', sans-serif;
}
.court-status {
  margin-left: auto;
}

.court-type {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: #636e72;
}

.court-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #636e72;
  padding: 8px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.detail-item:hover {
  background-color: #e9ecef;
}

.detail-item .material-symbols-outlined {
  font-size: 1.2rem;
}

.text-primary {
  color: #0984e3 !important;
}

.pricing-section {
  background-color: #f8f9fa;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price-row:last-child {
  margin-bottom: 0;
}

.price-item.wholesale {
  color: #00b894;
}

.price-label {
  font-size: 1rem;
  color: #636e72;
}

.price-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: #2d3436;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL'1, 'wght'400, 'GRAD'0, 'opsz'24;
}

.get-directions {
  color: white;
  text-decoration: none;
}
.available {
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #43A046;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  color: #ffffff;
}
.not-available {
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #6c757d;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  color: #ffffff;
}

.card-available {
  margin-right: 8px;
  margin-bottom: 8px;
  background-color: #43A046;
  padding: 6px 12px;
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 0.85rem;
}
.card-not-available {
  margin-right: 8px;
  margin-bottom: 8px;
  background-color: #6c757d;
  padding: 6px 12px;
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 0.85rem;
}
.contact-info {
  padding: 0.5rem 0;
}

.venue-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.d-inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.material-symbols-outlined {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .venue-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .d-inline-flex {
    width: 100%;
  }
}

.venue-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
}

.venue-card .court-card-body {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
