/* RESET */
/* COLOR PALETTE */
img {
    max-width: 100%;
    height: auto;
}

:root {
    --red: #8B0000;
    --blue: #6e88cb;
    --light: #f4f4f4;
    --white: #ffffff;
    --black: #000000;
}

h1, h2, h3 {
    font-weight: 600;
}

/* Body text */
body {
    font-family: 'Inter', sans-serif;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Inter', serif;
}

/* Optional polish */
h1 {
    letter-spacing: 1px;
}

.nav-links a {
    font-weight: 600;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: rgb(209, 221, 255);
    color: #222;
    padding-top: 90px;
}

body.home-page {
    padding-top: 0;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

#footer-placeholder {
    margin-top: auto;
}

/* NAVBAR */
.navbar {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-logo img {
    height: 55px;
    width: auto;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--black);
    line-height: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--red);
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 12px;
    }

    .nav-logo img {
        height: 42px;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 12px;
        width: 150px;
        max-width: calc(100vw - 24px);
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        padding: 6px 0;
        z-index: 2000;
        box-sizing: border-box;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    background: rgb(209, 221, 255) url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 40px;
    box-sizing: border-box;
}

.hero-logo img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-logo img {
        max-width: 280px;
    }
}

.btn {
    background: var(--red);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: var(--blue);
}

/* SECTIONS */
.section {
    width: 100%;
    max-width: 900px;
    padding: 80px 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: var(--black);
    margin-bottom: 10px;
}

.section h2 {
    text-align: center;
    color: var(--blue);
    margin-top: 5px;
    margin-bottom: 5px;
}

/* CAST GRID */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cast-card {
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cast-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* GROUP PHOTO */
.group-photo img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#about {
    text-align: center;
}

/* GRID OF PLAYWRIGHT CARDS */
.playwright-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.playwright-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    line-height: 1.7;
    width: 100%;
    box-sizing: border-box;
}

.playwright-card h3 {
    margin-bottom: 15px;
    color: var(--blue);
    font-size: 1.5rem;
}

.playwright-card p {
    font-size: 1.05rem;
}

.playwright-card a {
    color: var(--blue);
    font-weight: bold;
    text-decoration: none;
}

.playwright-card a:hover {
    text-decoration: underline;
}

.center-card {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* FOOTER */
footer {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* DONATE */
.donate-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.donate-card {
    background: #ffffff;
    max-width: 850px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.donate-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--blue);
}

.donate-text a {
    color: var(--blue);
    text-decoration: none;
    word-break: break-word;
}

.donate-text a:hover {
    text-decoration: underline;
}

.donate-section img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.donate-section h2 {
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 2rem;
}

.donate-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #222;
}

.donate-btn {
    display: inline-block;
    margin: 20px 0;
    padding: 14px 32px;
    font-size: 1.1rem;
}

.donate-footer {
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

/* HEADSHOTS ABOVE BIOS */
.playwright-headshot {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* GROUP PHOTO BELOW BOTH BIOS */
.group-photo img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* CONTACT */
.contact-card {
    text-align: center;
    max-width: 700px;
    margin: 40px auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    white-space: normal;
    word-break: keep-all;
    box-sizing: border-box;
}

.contact-card h2 {
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 2rem;
}

.contact-card p {
    text-align: center;
}

.contact-card a {
    display: inline;
}

.contact-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info p {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--red);
    text-decoration: underline;
}

/* SOCIAL */
.social-footer {
    background: var(--blue);
    padding: 25px 0;
    margin-top: 60px;
}

.social-links {
    text-align: center;
}

.social-links a {
    margin: 0 15px;
    display: inline-block;
}

.social-links img {
    width: 32px;
    height: 32px;
    transition: 0.2s ease;
}

.social-links img:hover {
    filter: brightness(0) invert(0.6);
}

p {
    text-align: center;
}

/* BANDCAMP */
.bandcamp-wrapper {
    width: 100%;
    height: 100vh;
}

.bandcamp-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.centered {
    text-align: center;
}

/* SLIDESHOW */
.slideshow {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 20px auto;
    cursor: pointer;
}

.slide {
    display: none;
    width: 100%;
    border-radius: 8px;
}

.slide.active {
    display: block;
}

/* IMAGE ENLARGE MODAL */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.image-modal img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.image-modal.show {
    display: block;
}

.image-description {
    margin-top: 0;
    margin-bottom: 10px;
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
}

/* MERCH */
.merch-card {
    width: 100%;
    max-width: none;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    box-sizing: border-box;
}

.merch-card .slideshow {
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-card .slide {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    display: none;
}

.merch-card .slide.active {
    display: block;
}

.merch-card h3,
.merch-card p {
    margin: 10px 0;
}

/* AUDITIONS PAGE */
.auditions-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.auditions-card {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.auditions-card h2,
.auditions-card h3,
.auditions-card p {
    text-align: center;
}

.auditions-card h2 {
    color: var(--blue);
    margin-bottom: 18px;
}

.auditions-card h3 {
    color: var(--blue);
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

.auditions-card p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.audition-button-wrap {
    margin: 30px 0 10px;
    text-align: center;
}

.audition-button-wrap .btn {
    display: inline-block;
    margin: 0 auto;
}

.audition-note {
    font-size: 0.95rem;
}

.auditions-card a:not(.btn) {
    color: var(--blue);
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    body {
        padding-top: 75px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 60px 15px;
    }

    .playwright-card,
    .contact-card,
    .donate-section {
        padding: 25px 20px;
    }

    .playwright-headshot {
        max-width: 200px;
    }

    .playwright-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
        justify-items: center;
    }

    .playwright-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .group-photo {
        padding: 0 15px;
    }

    .contact-card {
        width: calc(100% - 30px);
        max-width: 700px;
        margin: 40px auto;
        padding: 25px 20px;
        box-sizing: border-box;
    }

    .auditions-page {
        padding: 25px 15px;
    }

    .auditions-card {
        max-width: 100%;
        margin: 20px auto;
    }

    .store-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
    justify-items: center;
}

.store-grid .merch-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
}
