/* ========================= GENERAL ========================= */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* ========================= CAROUSEL ========================= */
.carousel-item img {
  height: 400px;
  object-fit: cover;
  filter: brightness(70%);
}

.carousel-caption h1 {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
  color: #f0f0f0;
}

/* ========================= CARDS ========================= */
.card {
  border: none;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card img {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.btn-dark {
  border-radius: 8px;
}

/* ========================= FOOTER ========================= */
footer a:hover {
  color: #ffc107 !important;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 768px) {
  .carousel-item img {
    height: 280px;
  }

  .carousel-caption h1 {
    font-size: 1.4rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}
