body {
  font-family: 'Segoe UI', sans-serif;
}

.jumbotron {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
}

/* ================= HERO BANNER ================= */

/* Desktop / Laptop */
.carousel-banner-img {
    width: 100%;
    height: 550px;              /* Proper hero height */
    object-fit: cover;          /* Crop smartly */
    object-position: center;
}

/* Prevent layout jump while loading */
#schoolCarousel {
    min-height: 550px;
}

/* Mobile view */
@media (max-width: 768px) {
    .carousel-banner-img {
        height: 240px;          /* Smaller for mobile */
    }

    #schoolCarousel {
        min-height: 240px;
    }
}
