* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(45deg, #0a0010, #1a0020, #0d0000, #110015);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #c8b8d8;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Vertical scrolling taglines — fixed on far left and right */
.side-tagline {
    position: fixed;
    top: 0;
    height: 100vh;
    overflow: hidden;
    writing-mode: vertical-lr;
    z-index: 20;
    pointer-events: none;
    user-select: none;
}

.side-tagline-left  { left:  0.4rem; }
.side-tagline-right { right: 0.4rem; }

.scroll-track {
    font-size: 0.72rem;
    color: #5a3a6a;
    font-style: italic;
    letter-spacing: 0.12em;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Scattered art images */
.scattered-img {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.7);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 4rem 4rem;
}

.hero h1,
.hero .tagline,
.hero .main-content,
.hero .instagram-section {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    color: #d4b0e8;
    letter-spacing: 0.5em;
    text-shadow: 0 0 20px #4b0082, 4px 4px 12px rgba(0, 0, 0, 0.9);
    animation: spin3d 22s linear infinite;
    cursor: pointer;
    transform-style: preserve-3d;
}

@keyframes spin3d {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Two-column layout */
.main-content {
    display: flex;
    gap: 5rem;
    margin-top: 3.5rem;
    width: 100%;
    max-width: 960px;
    align-items: flex-start;
}

/* Shows */
.shows-section {
    flex: 1;
    min-width: 0;
    background: rgba(5, 0, 12, 0.55);
    border-radius: 6px;
    padding: 1.6rem;
}

.shows-section h3,
.music-section h3 {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6b0000;
    margin-bottom: 1.5rem;
}

.shows-list {
    list-style: none;
}

.shows-list li {
    display: flex;
    gap: 1.2rem;
    align-items: baseline;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(75, 0, 130, 0.25);
}

.shows-list li:last-child {
    border-bottom: none;
}

.show-date {
    font-size: 0.85rem;
    color: #bf2020;
    min-width: 52px;
    letter-spacing: 0.05em;
}

.show-venue {
    font-size: 1.05rem;
    color: #e0d0f0;
}

.show-city {
    font-size: 0.8rem;
    color: #8a7a9a;
    letter-spacing: 0.05em;
    margin-left: 0.4rem;
}

/* Music */
.music-section {
    flex-shrink: 0;
    width: 350px;
    background: rgba(5, 0, 12, 0.55);
    border-radius: 6px;
    padding: 1.6rem;
}

.about-blurb {
    font-size: 0.95rem;
    color: #b090d0;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.music-section iframe {
    display: block;
    border: 0;
    width: 350px;
    height: 470px;
}

/* Live photo gallery */
.gallery {
    padding: 2rem 3rem 5rem;
    columns: 3;
    column-gap: 0.8rem;
}

.gallery img {
    width: 100%;
    display: block;
    margin-bottom: 0.8rem;
    break-inside: avoid;
    opacity: 0.85;
    transition: opacity 0.25s, transform 0.25s;
    cursor: pointer;
}

.gallery img:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Instagram — now lives inside shows-section column */
.instagram-section {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Past Shows link */
.past-shows-link {
    display: inline-block;
    margin-top: 1.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8b8d8;
    text-decoration: none;
    border: 1px solid rgba(75, 0, 130, 0.5);
    padding: 0.45rem 1rem;
    border-radius: 2px;
    transition: color 0.2s, border-color 0.2s, text-shadow 0.2s, box-shadow 0.2s;
}

.past-shows-link:hover {
    color: #d4b0e8;
    border-color: #4b0082;
    text-shadow: 0 0 8px #4b0082;
    box-shadow: 0 0 12px rgba(75, 0, 130, 0.4);
}

/* Live video embed */
.live-video-section {
    margin-top: 2rem;
}

.live-video-section h3 {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6b0000;
    margin-bottom: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* Footer */
.site-footer {
    text-align: center;
    padding: 3.5rem 2rem 4rem;
    border-top: 1px solid rgba(75, 0, 130, 0.2);
    position: relative;
    z-index: 1;
}

.footer-art {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #5a3a6a;
}

.footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #5a3a6a;
    font-style: italic;
}


/* Easter Egg */
.secret-message {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: #1a0010;
    padding: 1rem;
    border-radius: 4px;
    border: 2px solid #6b0000;
    box-shadow: 0 0 20px rgba(107, 0, 0, 0.6);
    transition: bottom 0.5s;
    max-width: 300px;
    z-index: 1000;
    color: #c0a0d8;
}

.secret-message.show {
    bottom: 20px;
}

.floating-emoji {
    position: fixed;
    font-size: 3rem;
    pointer-events: none;
    animation: float 3s ease-out;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-500px) rotate(360deg); opacity: 0; }
}

/* Contact */
.contact-section {
    text-align: center;
    padding: 3rem 2rem 3.5rem;
    border-top: 1px solid rgba(75, 0, 130, 0.2);
}

.contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6b0000;
    margin-bottom: 0.8rem;
}

.contact-text {
    font-size: 0.95rem;
    color: #8060a0;
    font-style: italic;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.1rem;
    color: #c8b8d8;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 0, 130, 0.5);
    padding-bottom: 2px;
    transition: color 0.2s, text-shadow 0.2s;
}

.contact-email:hover {
    color: #d4b0e8;
    text-shadow: 0 0 10px #4b0082;
}

/* ── Tablet (≤768px) ─────────────────────────────── */
@media (max-width: 768px) {
    /* Hide scattered art — too cluttered on small screens */
    .scattered-img { display: none; }

    /* Shrink side taglines to a thinner strip */
    .scroll-track { font-size: 0.6rem; letter-spacing: 0.08em; }

    .hero {
        padding: 2.5rem 2rem 3rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }

    /* Stack shows + music vertically */
    .main-content {
        flex-direction: column;
        gap: 2.5rem;
        margin-top: 2.5rem;
    }

    .music-section {
        width: 100%;
        order: -1;
    }

    /* Let the iframe stretch to fill its container */
    .music-section iframe {
        width: 100% !important;
        max-width: 350px;
        height: 400px;
    }

    .instagram-section {
        max-width: 100%;
    }

    .gallery {
        columns: 2;
        padding: 1.5rem 1rem 3rem;
    }
}

/* ── Phone (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
    /* Hide side taglines entirely — too tight on small phones */
    .side-tagline { display: none; }

    .hero {
        padding: 2rem 1.2rem 2.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }

    .shows-section h3,
    .music-section h3 {
        font-size: 0.65rem;
    }

    .show-venue { font-size: 0.95rem; }

    .music-section iframe {
        height: 350px;
    }

    .gallery {
        columns: 1;
        padding: 1rem 0.8rem 2rem;
    }

    .secret-message {
        max-width: calc(100vw - 2rem);
        left: 1rem;
    }
}
