/* General Body & Typography */
body {
    font-family: 'PT Serif', serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', serif;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

p {
    color: #666;
    line-height: 1.6;
}

/* Header styles */
.header {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'PT Serif', serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-title a {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #1a1a1a;
}

.social-icons a {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #555;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    background-image: url('images/hero_eva.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin: 0;
    color: white;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* About Section */
.about {
    width: 100%;
    background-color: white;
    padding: 80px 0;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
    text-align: left;
}

.credits {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.credits p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.credits strong {
    color: #333;
}

/* Video Section */
.video-section {
    width: 100%;
    background-color: #000;
    padding: 60px 0;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Tour Dates Section */
.tour-dates {
    width: 100%;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.tour-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.tour-dates h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
}

.shows-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.show-item {
    background-color: white;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.show-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.show-location {
    font-size: 1rem;
    color: #666;
    flex-grow: 1;
    margin: 0 20px;
}

.tickets-btn {
    background-color: #333;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.tickets-btn:hover {
    background-color: #555;
}

.tickets-btn.coming-soon {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

/* Footer Styles */
.footer {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; 
    font-family: 'PT Serif', serif;
    line-height: 1.6;
}

.footer-left {
    margin-right: 20px;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: bold;
}

.footer-left .media-credits {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0;
}

.footer-right {
    text-align: right;
    font-size: 0.85rem;
}

.footer-right p {
    margin: 0;
}

.footer-right .footer-link {
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
    color: #1a1a1a;
}

.footer-right .footer-link:hover {
    color: #555;
}

.footer-right a {
    color: #1a1a1a;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* Page-Specific Styles for legal pages */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    margin-bottom: 40px;
}

.container h1, .container h2, .container h3, .container h4, .container h5, .container h6 {
    text-align: left;
}

.container h1 {
    margin-top: 0;
}

/* --- Meet the Musicians Page-Specific Styles --- */
.musicians-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.musicians-page-container h1 {
    font-size: 3rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 5rem;
    font-weight: normal;
}

.musician-bio {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 6rem;
}

.musician-bio.reverse {
    flex-direction: row-reverse;
}

.musician-photo-container {
    width: 424px;
    height: 424px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 5px solid #ffffff;
    box-sizing: border-box;
}

.musician-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio-text-content {
    flex-grow: 1;
}

.bio-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    text-align: left;
    margin-top: 0;
}

.bio-text-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* --- Homepage specific styles (reverted to original layout) --- */
.meet-band {
    padding: 80px 0;
    text-align: center;
    background-color: #000; /* Added this line for black background */
}

.meet-band h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #fff; /* Changed text color to white for contrast */
}

.band-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    justify-items: center;
    margin-top: 50px;
}

.band-member {
    text-align: center;
}

.band-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: #fff; /* Changed text color to white for contrast */
}

.band-member .instrument {
    font-style: italic;
    color: #bbb; /* Adjusted color for better contrast on black */
    margin-bottom: 15px;
}

.member-photo {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bio-btn {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.bio-btn:hover {
    background-color: #555;
}


/* Responsive Design */
@media (max-width: 992px) {
    /* ... (rest of the media query code remains the same as before) ... */
    .musician-photo-container {
        width: 363px;
        height: 363px;
    }

    .band-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header {
        flex-direction: column;
        padding: 15px 20px;
    }
    .header-title {
        margin-bottom: 10px;
        text-align: center;
    }
    .header-title a {
        font-size: 1.2rem;
    }
    .social-icons a {
        margin: 0 10px;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    .hero {
        height: 80vh;
    }

    /* About */
    .about {
        padding: 60px 0;
    }
    .about-container {
        padding: 0 30px;
    }
    .about h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .about p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    /* Video */
    .video-section {
        padding: 40px 0;
    }
    .video-container {
        padding: 0 15px;
    }
    /* Tour Dates */
    .tour-dates {
        padding: 60px 0;
    }
    .tour-container {
        padding: 0 30px;
    }
    .tour-dates h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .show-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        text-align: left;
    }
    .show-date {
        font-size: 1rem;
        margin-bottom: 8px;
        min-width: auto;
    }
    .show-location {
        margin: 0 0 15px 0;
        font-size: 0.95rem;
    }
    .tickets-btn {
        align-self: flex-end;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    /* Footer */
    .footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-left {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .footer-right {
        text-align: center;
    }
    /* Page-specific for legal pages */
    .container {
        padding: 30px;
    }
    /* Musicians Page specific responsive styles */
    .musician-bio, .musician-bio.reverse {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 3rem;
        padding: 0 20px;
    }
    .musician-photo-container {
        width: 100%;
        max-width: 363px;
        height: 363px;
    }
    .bio-text-content {
        width: 100%;
        text-align: center;
        padding-top: 0;
    }
    .musicians-page-container h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .bio-text-content h2 {
        font-size: 2rem;
        margin-top: 0;
    }
    .bio-text-content h2, .bio-text-content p {
        text-align: center;
    }

    .band-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    .hero {
        height: 70vh;
    }

    /* About */
    .about {
        padding: 40px 0;
    }
    .about-container {
        padding: 0 20px;
    }
    .about h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .about p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    .credits {
        margin-top: 30px;
        padding-top: 20px;
    }
    /* Video */
    .video-section {
        padding: 30px 0;
    }
    .video-container {
        padding: 0 10px;
    }
    /* Tour Dates */
    .tour-dates {
        padding: 40px 0;
    }
    .tour-container {
        padding: 0 20px;
    }
    .tour-dates h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .show-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    .show-date {
        font-size: 0.95rem;
    }
    .show-location {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    .tickets-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    /* Musicians Page */
    .musicians-page-container {
        padding: 40px 0;
    }
    .musicians-page-container h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .musician-bio, .musician-bio.reverse {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    .musician-photo-container {
        width: 303px;
        height: 303px;
    }
    .musician-bio h2 {
        font-size: 1.8rem;
    }
    /* Footer */
    .footer {
        padding: 20px;
    }
    .footer-left {
        margin-bottom: 10px;
    }
    .footer-right {
        font-size: 0.8rem;
    }
    /* Page-specific for legal pages */
    .container {
        padding: 20px;
        margin: 20px auto;
    }

    .band-grid {
        grid-template-columns: 1fr;
    }
}