/* ============================================
   BANNER IMAGE SIZE FIX
   Ensures banner images display at full size
   ============================================ */

/* Banner sections - ensure full width and proper height */
section[style*="background-image"] {
    width: 100% !important;
    min-height: 500px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Ensure banner images are not constrained */
.page-header[style*="background-image"],
section[style*="background-image"] {
    background-attachment: scroll !important; /* Changed from fixed for better mobile support */
}

/* Mobile - adjust banner height */
@media screen and (max-width: 768px) {
    section[style*="background-image"] {
        min-height: 400px !important;
        background-attachment: scroll !important;
    }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    section[style*="background-image"] {
        min-height: 450px !important;
    }
}

/* Desktop - larger banners */
@media screen and (min-width: 1025px) {
    section[style*="background-image"] {
        min-height: 500px !important;
    }
}

/* Large screens - even larger banners */
@media screen and (min-width: 1400px) {
    section[style*="background-image"] {
        min-height: 600px !important;
    }
}
