body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafc;
}

/* Navbar */
.navbar {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Page Title */
h1.h4 {
  color: #0d6efd;
  font-weight: 600;
}

/* Sort Dropdown */
#sortSelect {
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease-in-out;
}
#sortSelect:hover {
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

/* Card Grid */
#cardsGrid {
  margin-top: 1rem;
}

/* Card */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Card Image */
.card-img-top {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Card Title */
.card-title {
  color: #212529;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
  background-color: black;
  border: none;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: orange;
}
.btn-outline-secondary {
  border-radius: 6px;
}

/* Footer */
footer {
  font-size: 0.85rem;
}
footer a {
  margin: 0 6px;
  color: #fff;
  transition: color 0.2s;
}
footer a:hover {
  color: #ffc107;
}

/* Empty State */
#emptyState {
  opacity: 0.75;
  font-size: 1.2rem;
  color: #6c757d;
}

/* Header Background */
.hd-background {
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, #000000 0%, #434343 100%);
  color: white;
  min-height: 80vh;
  justify-content: center;
  align-items: center;
}