﻿body {
    
/* Banner Container */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Banner Image */
.banner-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}

/* Overlay Styles */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Text Styles */
.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }
}
}
