/* --- GLOBAL SETUP & VARIABLES --- */
:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --primary-accent: #ffffff;
    --container-bg: #121212;
    --border-color: #2c2c2c;
    --font-main: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-align: center;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b0b0b0;
}

/* --- HERO / LANDING SECTION --- */
.hero {
    height: 100vh;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-logo {
    width: 90%;
    max-width: 600px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}
.hero-social {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}
.hero-social a {
    color: var(--primary-accent);
    font-size: 1.8rem;
    margin: 0 0.5rem;
    transition: transform 0.3s;
}
.hero-social a:hover {
    transform: scale(1.2);
}
.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    z-index: 3;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-5px); }
}

/* --- STICKY NAVIGATION --- */
.main-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
}
.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: var(--primary-accent);
}

/* --- GENERAL CONTENT SECTIONS --- */
.content-area-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.content-area {
    position: relative;
    z-index: 1;
    background: none;
}

.content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    z-index: 0;
}

.content-area section {
    position: relative;
    z-index: 1;
    background-color: transparent;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}
.content-area section:last-of-type {
    border-bottom: none;
}

/* --- MUSIC SECTION --- */
.music-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.album-card {
    background-color: var(--container-bg);
    text-align: center;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}
.album-card img {
    width: 100%;
    display: block;
}
.album-card h3 {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.4rem;
}
.album-card span {
    font-size: 1rem;
    color: #aaa;
}
.card-button {
    display: block; /* Changed from inline-block for better consistency */
    margin: 1rem;
    padding: 0.85rem 1.5rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    border-radius: 4px;
}
.card-button:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--bg-color);
}

/* --- VIDEOS SECTION --- */
.video-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding-top: 56.25%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border-radius: 8px;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- UNIFIED PLACEHOLDER & RE-CONSENT BUTTON STYLES --- */
.video-placeholder,
.video-placeholder-inline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    text-align: center;
    padding: 1rem;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder-inline {
    padding: 2rem 1rem;
}

.video-placeholder p,
.video-placeholder-inline p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #ccc;
}

.bandcamp-placeholder {
    margin: 1rem;
    border-top: 1px solid var(--border-color);
}

.re-consent-btn {
    padding: 0.5rem 1rem;
    background-color: #333;
    color: var(--text-color);
    border: 1px solid #555;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.re-consent-btn:hover {
    background-color: #444;
}


/* --- TOUR SECTION (Live) --- */
.tour-list {
    max-width: 800px;
    margin: 0 auto;
}
.tour-entry {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
.tour-entry:hover {
    background-color: rgba(255, 255, 255, 0.03);
}
.tour-entry:last-of-type { border-bottom: none; }
.tour-date { font-weight: 700; }
.tour-venue { color: #ccc; }
.tour-city { text-align: right; }
.ticket-link {
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    text-align: center;
    border-radius: 4px;
}
.ticket-link:hover {
    background-color: var(--primary-accent);
    color: var(--bg-color);
    border-color: var(--primary-accent);
}
.ticket-link.disabled {
    border-color: #555;
    color: #555;
    pointer-events: none;
    opacity: 0.6;
}
.placeholder-text {
    text-align: center;
    color: #888;
    margin-top: 2rem;
    font-style: italic;
}
.placeholder-text a {
    text-decoration: underline;
}

/* --- PAST SHOWS SECTION --- */
.past-shows-container {
    max-width: 800px;
    margin: 1rem auto 0 auto; 
    padding-top: 3rem;
    border-top: 0px solid var(--border-color);
    text-align: center;
}

.past-shows-container h3 {
    font-size: 1.5rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.past-show-year {
    margin-bottom: 1rem;
    color: #888; /* De-emphasized color for venues */
    line-height: 1.7;
    font-size: 0.95rem;
}

.past-show-year strong {
    color: #aaa; /* Slightly brighter color for the year */
    font-weight: 700;
}

/* --- ABOUT SECTION --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.about-photo {
    width: 45%;
    max-width: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.about-content p {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem; /* Add space between paragraphs */
}

.band-members {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.band-members h4 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #ccc;
}

.band-members p {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-color); /* Use the main text color for names */
    font-weight: 400; /* Regular weight */
}

/* --- FOOTER --- */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--container-bg);
    border-top: 1px solid var(--border-color);
}
.contact-email {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-accent);
    text-decoration: none;
    margin-bottom: 2rem;
}
.social-table {
    margin: 0 auto; /* Center the table itself */
    border-collapse: collapse; /* Ensure there are no gaps */
    width: 100%;
    max-width: 600px; /* Control the maximum width */
}
.social-table td {
    padding: 0.75rem; /* Space around each icon */
    text-align: center; /* Center the icon within its cell */
}
.social-table a {
    color: #aaa;
    font-size: 1.8rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block; /* Allows transform to work */
}
.social-table a:hover {
    color: var(--primary-accent);
    transform: scale(1.2);
}
.copyright {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #777;
}
.copyright a {
    color: #777;
    text-decoration: none;
}
.copyright a:hover {
    color: var(--primary-accent);
}

/* --- COOKIE CONSENT BANNER --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--container-bg);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 15px rgba(0,0,0,0.5);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    font-size: 0.95rem;
}
.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.banner-content p {
    margin: 0;
    color: #ccc;
}
.banner-content a {
    color: var(--primary-accent);
    text-decoration: underline;
}
.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.banner-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s;
}
#cookie-accept-btn {
    background-color: var(--primary-accent);
    color: var(--bg-color);
}
#cookie-accept-btn:hover {
    background-color: #ddd;
}
#cookie-decline-btn {
    background-color: #333;
    color: var(--text-color);
    border: 1px solid #555;
}
#cookie-decline-btn:hover {
    background-color: #444;
}


/* --- LEGAL PAGE STYLES --- */
.legal-page {
    max-width: 850px;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.legal-page h1 { font-size: 2.5rem; text-align: left; margin-bottom: 2rem; }
.legal-page h2 { font-size: 2rem; margin-top: 3rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); text-align: left;}
.legal-page h3 { font-size: 1.5rem; color: var(--primary-accent); margin-top: 2rem; text-align: left;}
.legal-page h4 { font-size: 1.1rem; color: #ccc; margin-top: 1.5rem; font-style: italic; text-align: left;}
.legal-page p, .legal-page li { text-align: left; color: #b0b0b0; line-height: 1.8; }
.legal-page ul { padding-left: 25px; }

.re-consent-container-subtle {
    margin-top: 2rem;
    text-align: left;
}
.re-consent-container-subtle p {
    margin-bottom: 0.5rem;
}
.re-consent-btn-subtle {
    background: none;
    border: none;
    color: var(--primary-accent);
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    font-family: var(--font-main);
}
.re-consent-btn-subtle:hover {
    color: #ccc;
}
.consent-reset-message {
    margin-left: 1rem;
    color: #888;
    font-style: italic;
    transition: opacity 0.5s ease-out;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .main-nav a { margin: 0 0.75rem; font-size: 0.8rem; }
    .about-content { flex-direction: column; text-align: center; }
    .about-photo { width: 90%; max-width: 400px; margin-bottom: 2rem; }
    .tour-entry { grid-template-columns: 1fr; text-align: center; gap: 0.5rem; }
    .tour-city { text-align: center; }
    .ticket-link { grid-row: 4; margin-top: 1rem; display: inline-block; width: fit-content; justify-self: center; }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3rem; }
    .main-nav a { margin: 0 0.5rem; font-size: 0.75rem; letter-spacing: 0.5px; }
    .content-area section { padding: 3rem 1.5rem; }

    .video-placeholder p,
    .video-placeholder-inline p {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .video-placeholder .re-consent-btn,
    .video-placeholder-inline .re-consent-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
