/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.banner-title-container {
    position: absolute;
    bottom: 20px; /* Positioned 20px from the bottom */
    right: 20px; /* Positioned 20px from the right */
    text-align: right; /* Align text to the right */
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background for better readability */
    padding: 15px 25px;
    border-radius: 8px; /* Rounded corners */
    animation: popIn 1s ease-out forwards; /* Animation to make it pop */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Shadow for depth */
}

.banner-title {
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    color: #f39c12; /* Bright color for the title */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Text shadow for better contrast */
}

.banner-subtitle {
    font-size: 1.2em;
    margin: 5px 0 0;
    color: #ecf0f1; /* Lighter color for the subtitle */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* Light shadow for contrast */
}

/* Animation to make the text pop */
@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
