/**********************START CUSTOM CSS*****************************/

.jumbotron-top {
    min-height: 300px;
    background-image: url('/images/top-1.png'); /* Path relative to the public directory */
    background-size: cover; /* Scales the image to cover the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    display: flex; /* Use Flexbox for centering */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    position: relative; /* For overlay positioning */
    color: white; /* Text color for readability */
}

/* Optional: Add a semi-transparent overlay for better text readability */
.jumbotron-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
}

/* Ensure content is above the overlay */
.jumbotron-top h1,
.jumbotron-top p {
    position: relative;
    z-index: 1; /* Ensure text is above the overlay */
    text-align: center; /* Center text horizontally */
    margin: 0; /* Remove default margins for better control */
}

/* Optional: Add some spacing between h1 and p */
.jumbotron-top p {
    margin-top: 10px; /* Space between h1 and p */
}

/***********************END CUSTOM CSS******************************/

