/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000; /* Dark background */
    color: #fff; /* Light text */
    font-size: 20px; /* Increase the font size */
}

.container {
    width: 100%;
    max-width: 1200px; /* Max width to align with the header */
    margin: 0 auto; /* Centering content */
    padding: 0 15px; /* Padding for inner spacing */
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #000000; /* Dark theme for header */
    text-align: center;
    padding: 10px 0;
}

.header-image img {
    max-width: 100%;
    height: auto;
}
.header-graphic {
    text-align: center;
    max-width: 1200px; /* Same as your header max-width */
    margin: 0 auto; /* Center the graphic */
    overflow: hidden; /* In case the image is larger than the container */
}

.header-graphic img {
    width: 100%; /* Scale image to container width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure image is never larger than its natural size */
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hamburger-menu {
    display: none; /* Hidden by default, will be shown in the media query for mobile devices */
    background-color: #000000;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
}

.next-event {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

/* Event List Styles */
.events-container {
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
}

.event {
    border-bottom: 1px solid #444;
    padding: 10px;
}

.event:last-child {
    border-bottom: none;
}

.event-date-time {
    color: #ccc;
}

.event-details .event-name {
    color: #fff;
    font-weight: bold;
}

.event-details .venue {
    color: #aaa;
}

/* Event Detail Styles */
.event-detail-container {
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
}

.event-promo-image {
    width: 100%; /* Scale image to container width */
    height: auto; /* Maintain aspect ratio */
    max-width: 1200px; /* Ensure image is never wider than the header */
    display: block; /* Ensures the image does not have extra space below */
    margin: 0 auto 20px; /* Center the image and add some space below */
}

.directions-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px 0;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.directions-button:hover {
    background-color: #0056b3;
}

/* Band Member Styles */
.band-image img {
    width: 100%; /* Scale the image to the width of its container */
    height: auto; /* Maintain the aspect ratio */
    max-width: 1200px; /* Limit the maximum width if needed */
    display: block; /* Ensures the image does not have extra space below */
    margin: 0 auto; /* Center the image if it's smaller than the container */
}
.band-member-descriptions {
    margin-bottom: 20px;
}

.member-description {
    margin-bottom: 15px;
}

.member-description h3 {
    margin-top: 10px;
    color: #007bff; /* Or any color that fits your design */
}
.band-members {
    text-align: center;
    font-size: 0; /* Remove space between inline-block elements */
}

.band-members .member {
    display: inline-block;
    width: calc(20% - 10px); /* Adjust width, accounting for margins */
    margin: 5px; /* Add some margin around each image */
    vertical-align: top;
    box-sizing: border-box;
}

.band-members img {
    width: 100%; /* Make image width responsive to the container */
    height: auto; /* Maintain aspect ratio */
    aspect-ratio: 1 / 1; /* Make images square */
    border-radius: 0; /* Circular images */
    cursor: pointer; /* Indicate that the image is clickable */
}

/* Setlist Styles */
.setlist {
    text-align: center;
    margin-bottom: 20px;
}

.setlist-container {
    display: inline-block;
    text-align: left;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.setlist ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.setlist li {
    margin-bottom: 10px;
}

/* Media Gallery Styles */
.media-gallery .gallery {
    text-align: center;
}

.media-gallery img {
    max-width: 50%; /* Display images at 50% of their full size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 0; /* Circular images */
    cursor: pointer; /* Indicate that the image is clickable */
}

.media-videos .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.media-videos .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.media-audio audio {
    display: block;
    margin: 0 auto; /* Centers the audio player */
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    nav ul {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center-align items */
        padding: 10px 0; /* Add some padding on top and bottom */
        display: none; /* Hide the menu initially */
    }

    nav ul li {
        margin: 10px 0; /* Increase margin for better tap targets */
        width: 100%; /* Full width for each item */
        border-bottom: 1px solid #444; /* Add a border between items */
    }

    nav ul li a {
        display: block; /* Make the entire area of the list item clickable */
        padding: 10px; /* Increase padding for easier tapping */
    }

    .hamburger-menu {
        display: block; /* Show the button on mobile devices */
    }
	 nav ul.menu-open {
        display: flex; /* Show the menu when the hamburger icon is tapped */
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center-align items */
        padding: 10px 0; /* Add some padding on top and bottom */
    }
    .menu-open nav ul {
        display: flex; /* Show the menu when the hamburger icon is tapped */
    }

    .container, .header-graphic, .event-promo-image, .band-image img {
        max-width: 95%; /* Adjust maximum width for smaller screens */
    }

    img, iframe {
        max-width: 100%; /* Ensure all images and iframes are responsive */
        height: auto;
    }
}
