/* General Styles */
body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Text Styles */
h1, h2, h4, h5, h6 {
    color: #ffffff; /* White text for headers */
}

/* Banner Styles */
.banner {
    text-align: center;
    padding: 20px;
    background-color: #333; /* Dark gray background for banner */
}

.banner .logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

/* Section Styles */
.band-description, .image-gallery, .video-gallery, .equipment-info, .stage-plot, .contact-info {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.band-description p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
}

/* Image Gallery Grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid for thumbnails */
    gap: 10px;
    justify-content: center;
}

/* Thumbnail Container */
.image-thumbnail {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    margin: 0 auto;
}

.image-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.image-thumbnail img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Lightbox for Images */
#lightbox {
    display: none;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw; 
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
}

#close-lightbox,
#prev-arrow,
#next-arrow {
    position: absolute;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
}

#close-lightbox {
    top: 20px;
    right: 30px;
}

#prev-arrow {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#next-arrow {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#prev-arrow:hover,
#next-arrow:hover {
    color: #00bfff;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.video-gallery .video-thumbnail img {
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-gallery .video-thumbnail img:hover {
    transform: scale(1.05);
}

/* Lightbox for Member Popups */
#member-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#member-popup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

#member-popup img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

#popup-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

#popup-bio {
    font-size: 1em;
    color: #555;
}

/* Social Media Icons Styling */
.social-media-icons {
    margin-top: 10px;
}

.social-media-icons a {
    color: #333;
    font-size: 36px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-media-icons a:hover {
    color: #ff4500;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
    margin-top: 20px;
}

footer a {
    color: #00bfff;
    text-decoration: none;
}

footer a:hover {
    color: #ff4500;
}

/* Contact and Social Links */
.contact-info {
    text-align: center;
}

.contact-info a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #ff4500;
}

/* Band Members Grid */
.members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.member-card {
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin: 10px;
    position: relative;
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    color: #000000;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.member-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.member-card:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .member-card {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .member-card {
        max-width: 100px;
    }
}

/* Song List Table */
.centered-table-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.song-table {
    width: 80%;
    max-width: 600px;
    border-collapse: collapse;
    background-color: #ffffff;
    color: #000000;
}

.song-table th, .song-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.song-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.song-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.song-table tr:hover {
    background-color: #ddd;
}

/* Button Row Styling */
.button-row {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}
