
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

header {
    background: url('images/header-bg.png') no-repeat center center;
    background-size: contain; /* Maintain aspect ratio */
    color: white;
    text-align: center;
    padding: 5px 5px;
    min-height: 396px;
    height: auto;
}

.banner {
    width: 100%;
    height: 45vh; /* 45vh Adjust based on how tall you want it */
    overflow: hidden;
    position: relative;
}

.banner img {
   width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner img.active {
     opacity: 1;
    z-index: 2;
}


/* 📱 Mobile: Adjustments */
@media (max-width: 768px) {
    header {
        background-size: cover; /* Maintain aspect ratio on smaller screens */
        padding: 10px 5px;
        min-height: 250px; /* Allow dynamic height */
        height: auto;
    }

    .banner {
        height: auto; /* Allow dynamic height */
        min-height: 250px; /* Ensure it doesn't collapse */
    }

    .banner img {
        width: 100%; /* Corrected syntax */
        height: auto; /* Keep proportions */
        object-fit: cover; /* Ensure it fills the area */
		object-position: left center; /* Align image from the left side */
    }
}


.container h2 {
    font-size: 12px; /* Adjust the size as needed */
    line-height: 1.4; /* Improve readability */
}

nav {
    background-color: #b71c1c;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 12px;
}

.container {
    padding: 10px;
    text-align: center;
}

.audio-player {
    margin: 20px auto;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 200px;
    height: 150px;
    margin: 10px;
    border-radius: 10px;
}

.video-container, .donation-container, .live-stream {
    text-align: center;
    margin-top: 10px;
}

footer {
    background-color: #546e7a;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: relative;
    bottom: 0;
}

.video-container {
    text-align: center;
    margin: 10px 0;
}

video {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

audio {
    width: 80%; /* Adjust the width as needed */
    max-width: 300px;
}
