/* Custom styles for Turf Booking App */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: #374151;
  line-height: 1.5;
  background-color: #F3F4F6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111827;
  font-weight: 600;
}

.card {
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.card-header {
  background-color: #fff;
  border: none;
}

.card-body {
  padding: 2rem;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

/* Enhance form inputs */
.form-control:focus,
.form-select:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Style the slot buttons */
.btn-slot {
  transition: all 0.3s ease;
}

.btn-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-slot.selected {
  background-color: #28a745;
  color: white;
}

.card {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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


header a,h3 {
  text-decoration: none;
  color: #fff;
}
 
/* Style the header */
header {
  background: linear-gradient(to right, #28a745, #20c997);
}

footer {
  background-color: #F9FAFB;
  color: #6B7280;
}
footer a{
  color: #28a745;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Style the slot list items */
.list-group-item {
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

.btn-slot {
  transition: all 0.3s ease;
}

.btn-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-slot.selected {
  background-color: #28a745;
  color: white;
}