/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Orange Navbar (custom) */
.bg-orange {
  background-color: #f57c00 !important;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
}

/* Hero Section */
section.bg-light h1,
section.bg-light p {
  color: #333;
}

.btn-warning {
  background-color: #ff9800;
  border-color: #e68900;
}

/* Cards */
.card {
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.card-img-top {
  object-fit: cover;
  max-height: 180px;
}

/* Footer */
footer {
  background-color: #222;
  color: #bbb;
  font-size: 0.9rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Pagination Active State */
.pagination .page-item.active .page-link {
  background-color: #f57c00;
  border-color: #f57c00;
}

.pagination .page-link {
  color: #f57c00;
}

/* Responsive Image Handling */
img {
  max-width: 100%;
  height: auto;
}

/* Buttons */
.btn-outline-primary {
  border-radius: 30px;
  padding: 6px 20px;
}

.btn-sm {
  padding: 4px 12px;
  border-radius: 20px;
}

/* Utility */
.text-muted {
  font-size: 0.9rem;
  color: #777 !important;
}