/* Entry Page Styles --------------------------------------------------------- */
body.entry-page {
  background-color: black;
}

.entry-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.entry-image-wrapper {
  position: relative;
  width: 800px;
  height: 800px;
}

.entry-image {
  width: 100%;
  height: 100%;
}

.entry-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 2px white;  /* for Webkit browsers */
  text-stroke: 2px white;  /* standard, not supported in many browsers */
}

.entry-image-wrapper:hover .entry-text {
  color: darkred;
}

.entry-button-wrapper {
  margin-top: 20px;
}

.entry-button {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1.5rem;
  background-color: #000;
  color: #fff;
  text-align: center;
}


/* Reset & Basic Styles ----------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    color: #333;
    font-size: 20px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	padding: 0px;
    background-color: #fff;
}

/* Header & Navigation ----------------------------------------------- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 10px 0;
    background-color: #000;
    text-align: center;
}

.logo img.responsive-logo {
    width: 100%;
    max-width: 500px;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* Prevents wrapping */
    margin-top: 10px;
}

nav a {
    margin: 0 10px; /* Reduced margin */
    padding: 5px 7px; /* Slightly reduced padding */
    color: #f7f7f7;
    text-decoration: none;
    transition: background-color 0.3s;
}

nav a:hover, 
nav a.active {
    background-color: #555;
    border-radius: 5px;
}

/* Typography & Main Content ---------------------------------------- */
h1, h2, h3, p {
    margin: 1em 0;
}

h1 {
    font-size: 2em;
    text-align: center;
}


/* Band Page --------------------------------------------------------- */

.band-members {
    display: flex;
    flex-wrap: wrap;  /* This will allow the items to wrap if they exceed the container width */
    gap: 20px;
    justify-content: space-between;
}

.band-member {
    display: flex;
    align-items: start;  /* Align the content to the top */
    width: calc(25% - 20px);  /* Take into account the gap and allow 4 members per row */
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    flex-direction: column;  /* Stack the content vertically */
    text-align: left;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.band-member img {
    width: 250px;
    height: auto;
    margin-top: 10px; 
}

.band-member h2 {
    font-size: 1em;
    margin-bottom: 10px;
    white-space: nowrap;
}

.band-member p {
    margin-top: 10px;
}
.band-intro {
    text-align: center;
}





/* Contact Page ------------------------------------------------------ */
.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], 
input[type="email"], 
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    padding: 10px 15px;
    border: none;
    background: #222;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: #555;
}

/* Events Page ------------------------------------------------------- */
.upcoming-events {
    text-align: center;
    margin-bottom: 30px;
}

.events-list {
    list-style-type: none;
}

.events-list li {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.events-list li:hover {
    background-color: #e0e0e0;
}

/* Next Event -------------------------------------------------------- */
.next-event {
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    background-color: #007BFF;
    color: #FFF;
    border-bottom: 2px solid #0056b3;
    box-sizing: border-box;
}

.next-event-link {
    text-decoration: none; /* Remove the underline */
}

.next-event-link:hover {
    color: #FF5733; /* Or whatever color you prefer */
    text-decoration: none;
}


/* Media Page -------------------------------------------------------- */
audio {
    width: 100%;
    margin-top: 10px;
}

iframe {
    max-width: 100%;
    margin-top: 10px;
}

.audio-track {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.track-name {
    flex: 1;
    margin-right: 20px;
}

/* Footer ------------------------------------------------------------ */
footer {
    background-color: #000; /* Black background */
    padding: 20px 0;
    text-align: center;
    color: #f7f7f7; /* Light text for visibility on dark background */
    font-size: 1.2em;
}



/* Watermark --------------------------------------------------------- */
.band-description {
    position: relative;
    z-index: 1;
    background-color: transparent;
	font-weight: bold; /* This line makes all the text bold */
	padding-top: 0; /* Remove top padding */
	padding-left: 40px; /* Additional padding to accommodate the bullet points */
}

.watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/watermark.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;  /* This line centers the background image */
    opacity: 0.5;
    z-index: -1;
}

@media (max-width: 600px) {
    .watermark {
        background-size: 100% auto;  /* This scales the watermark to half its original size. Adjust as necessary. */
    }
}




/* Responsive Styles ------------------------------------------------ */
@media (max-width: 600px) {
    nav {
        font-size: 0.8rem; /* You might want to decrease this even further depending on your needs */
    }
    nav a {
        margin: 0 5px; /* Further reduced margin for mobile */
    }
}


@media (min-width: 768px) {
    .band-members {
        flex-direction: row;
        justify-content: space-around;
    }

    .band-member {
        flex-basis: calc(25% - 20px);
    }

    h1 {
        font-size: 1.5em;
    }
}

/* Gallery Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 20px; /* spacing between images */
}

.gallery-image {
    width: 100%; /* ensure images stretch to the size of their grid cell */
    height: auto; 
    cursor: pointer; /* indicates the image is clickable */
    transition: transform 0.2s; /* smooth zoom effect on hover */
}

.gallery-image:hover {
    transform: scale(1.1); /* zoom on hover */
}

/* Pagination Styles */
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: black;
}

.pagination a:hover {
    background-color: #ddd;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; /* full width */
    height: 100%; /* full height */
    overflow: auto;
    background-color: rgba(0,0,0,0.85); /* Black with slight transparency */
}

.modal-content {
    position: relative;
    margin: 0;
    padding: 20px;
    width: auto; 
    height: auto;
    max-width: 80%; /* max width */
    max-height: 80%; /* max height */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.close {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: rgba(0, 0, 0, 0.75); /* giving the close button a background for visibility */
    border-radius: 50%; /* makes the close button circular */
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 5px; /* a little padding to space out the 'X' */
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-content img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto; /* center the image */
}

/* Band Page Styles */

/* General Styles */
.band-members {
    display: flex;
    flex-wrap: wrap; /* This will allow items to wrap to the next line on smaller screens */
    gap: 20px; /* Space between band member profiles */
}

.band-member {
    flex: 1; /* Members take equal space */
    max-width: 240px; /* Adjust based on your design preference */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.band-member:hover {
    transform: scale(1.05);
}

.band-member img {
    width: 250px; /* Set fixed width to the image */
    height: auto;
}

/* Media Queries for Responsiveness */
@media only screen and (max-width: 768px) { /* Tablet and below */
    .band-members {
        justify-content: center; /* Center band members on tablets */
    }
}

@media only screen and (max-width: 480px) { /* Mobile */
    .band-member {
        width: 250px; /* Set fixed width to the band member container */
        margin: 0 auto; /* Center the band member container */
        max-width: none; /* Reset the max-width */
    }
    .band-members {
        flex-direction: column; /* Stack the members vertically */
        align-items: center;    /* Center the members */
    }
}

/* Band Description Page ------------------------------------------------- */
.band-description h1 {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 1em;
}

.band-intro {
    padding: 2em;
    background-color: #fff;
    text-align: left;
    color: #333;
    font-size: 1.2em;
}

.fan-testimonials, .important-note {
    margin-top: 2em;
    background-color: #f9f9f9;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fan-testimonials h2, .important-note h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    .band-intro {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .band-intro {
        font-size: 0.9em;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

