* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
}


/* =========================================================
   Site Navigation
   ========================================================= */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}

.nav-links a {
    padding: 9px 14px;

    color: #ccc;
    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 600;

    border-radius: 999px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;

    transform: translateY(-1px);
}

/* Keep Book Us visually prominent. */
.nav-links a:last-child {
    background: #fff;
    color: #000;

    padding-left: 18px;
    padding-right: 18px;
}

.nav-links a:last-child:hover {
    background: #ddd;
    color: #000;
}

/* =========================================================
   Temporary Tribute Banner
   ========================================================= */

.tribute-banner {
    display: block;
    width: 100%;

    padding: 9px 20px;

    background: #1a1a1a;
    border-bottom: 1px solid #333;

    color: #ddd;
    text-align: center;
    text-decoration: none;

    font-size: 0.85rem;
    letter-spacing: 0.3px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.tribute-banner span {
    margin-left: 8px;

    color: #fff;
    font-weight: 700;
}

.tribute-banner:hover {
    background: #242424;
    color: #fff;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px 20px;

    background: #000;
}

.band-logo {
    width: min(700px, 90vw);
    height: auto;
    margin-bottom: 30px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 4rem);
}

.tagline {
    margin-top: 15px;

    font-size: 1.2rem;
    color: #ccc;
}

.booking-button {
    display: inline-block;

    margin-top: 25px;
    padding: 14px 28px;

    background: #fff;
    color: #111;

    text-decoration: none;
    font-weight: bold;

    border-radius: 4px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.booking-button:hover {
    transform: scale(1.05);
    background: #ddd;
}


/* =========================================================
   Shared Section Styling
   ========================================================= */

.section-kicker {
    margin-bottom: 8px;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #999;
}

.section-button {
    display: inline-block;

    margin-top: 30px;
    padding: 14px 28px;

    background: #fff;
    color: #000;

    text-decoration: none;
    font-weight: 700;

    border-radius: 4px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.section-button:hover {
    transform: translateY(-2px);
    background: #ddd;
}


/* =========================================================
   Photo Gallery
   ========================================================= */

.band-gallery {
    background: #000;
    padding: 80px 20px;
}

.gallery-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.gallery-content h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.gallery-frame {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
}

.gallery-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    touch-action: pan-y;
}

.gallery-button {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 50px;
    height: 60px;

    border: none;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    font-size: 2rem;

    cursor: pointer;

    z-index: 2;

    transition:
        background 0.2s ease;
}

.gallery-button:hover {
    background: rgba(0, 0, 0, 0.85);
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

.gallery-dots {
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;

    margin: 0 5px;

    border: none;
    border-radius: 50%;

    background: #555;

    cursor: pointer;
}

.gallery-dot.active {
    background: #fff;
}


/* =========================================================
   Why Hire Us
   ========================================================= */

.why-hire-us {
    padding: 90px 20px;

    background: #111;
    color: #fff;
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;

    text-align: center;
}

.why-content h2 {
    margin: 0 0 20px;

    font-size: 2.4rem;
}

.why-lead {
    max-width: 760px;
    margin: 0 auto 25px;

    font-size: 1.35rem;
    line-height: 1.6;

    color: #fff;
}

.why-content > p:not(.section-kicker):not(.why-lead) {
    max-width: 800px;
    margin: 0 auto 18px;

    line-height: 1.7;

    color: #ccc;
}

.why-features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 45px;
}

.why-feature {
    padding: 28px 20px;

    background: #000;

    border: 1px solid #292929;
    border-radius: 8px;
}

.why-icon {
    display: block;

    margin-bottom: 14px;

    font-size: 2rem;
}

.why-feature h3 {
    margin: 0 0 10px;

    font-size: 1.1rem;
}

.why-feature p {
    margin: 0;

    color: #aaa;
    line-height: 1.5;
}


/* =========================================================
   Band Members
   ========================================================= */

.band-members {
    padding: 90px 20px;

    background: #000;
    color: #fff;
}

.members-content {
    max-width: 1100px;
    margin: 0 auto;
}

.members-content > h2,
.members-content > .section-kicker,
.members-intro {
    text-align: center;
}

.members-content h2 {
    margin: 0 0 20px;

    font-size: 2.4rem;
}

.members-intro {
    max-width: 750px;
    margin: 0 auto 45px;

    color: #aaa;

    line-height: 1.7;
}

.member-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.member-card {
    background: #111;

    border: 1px solid #292929;
    border-radius: 10px;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.member-card:hover {
    transform: translateY(-3px);

    border-color: #555;
}

.member-card-header {
    padding: 24px;

    background: #151515;

    border-bottom: 1px solid #292929;
}

.member-card-header h3 {
    margin: 0 0 6px;

    font-size: 1.45rem;
}

.member-card-header p {
    margin: 0;

    color: #888;

    font-size: 0.85rem;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.member-card-body {
    padding: 24px;
}

.member-card-body p {
    margin-top: 0;

    color: #ccc;

    line-height: 1.7;
}

.member-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.45s ease,
        opacity 0.3s ease,
        margin 0.3s ease;
}

.member-card.expanded .member-more {
    max-height: 900px;
    opacity: 1;
    margin-top: 10px;
}

.member-toggle {
    margin-top: 8px;
    padding: 0;

    background: none;
    border: none;

    color: #fff;

    font: inherit;
    font-weight: 700;

    cursor: pointer;

    border-bottom: 1px solid #666;
}

.member-toggle:hover {
    border-color: #fff;
}

.member-photo {
    width: 100%;
    aspect-ratio: 4 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #080808;
}

.member-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;
}

/* =========================================================
   Booking
   ========================================================= */

.booking {
    min-height: 70vh;

    padding: 100px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #111;
    color: #fff;
}

.booking-content {
    width: min(700px, 100%);
    margin: 0 auto;
}

.booking h2 {
    margin-top: 0;
    margin-bottom: 10px;

    font-size: clamp(2.2rem, 6vw, 3.5rem);
}

.booking-intro {
    margin-bottom: 40px;

    color: #bbb;

    font-size: 1.1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-weight: bold;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #444;
    border-radius: 4px;

    background: #000;
    color: #fff;

    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 15px 28px;

    background: transparent;
    color: #fff;

    border: 2px solid #fff;
    border-radius: 4px;

    font: inherit;
    font-weight: bold;
    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.submit-button:hover {
    background: #fff;
    color: #000;
}

#form-status {
    margin-top: 20px;
}

/* =========================================================
   Cliff Downs Tribute
   ========================================================= */

.tribute {
    padding: 90px 20px;

    background: #000;
    color: #fff;
}

.tribute-content {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);

    gap: 50px;
    align-items: center;
}

.tribute-photo {
    overflow: hidden;

    border: 1px solid #292929;
    border-radius: 10px;

    background: #111;
}

.tribute-photo img {
    width: 100%;
    height: 560px;

    display: block;

    object-fit: cover;

    /* Keeps Cliff and his granddaughter as the visual focus. */
    object-position: 50% 78%;
}

.tribute-text h2 {
    margin: 0 0 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.tribute-text > p:not(.section-kicker):not(.tribute-signature) {
    margin: 0 0 18px;

    color: #ccc;

    font-size: 1.05rem;
    line-height: 1.75;
}

.tribute-text > p:first-of-type:not(.section-kicker) {
    color: #fff;
    font-weight: 700;
}

.tribute-signature {
    margin: 28px 0 0;

    color: #fff;

    font-size: 1.1rem;
    font-weight: 700;

    text-align: right;
}

/* =========================================================
   Footer
   ========================================================= */

footer {
    text-align: center;

    padding: 30px;

    background: #080808;
    color: #888;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 700px) {

    .nav-content {
        padding: 10px 12px;
    }

    .nav-brand {
        display: none;
    }

    .nav-links {
        width: 100%;

        justify-content: center;

        gap: 4px;
    }

    .nav-links a {
        padding: 8px 9px;

        font-size: 0.72rem;
    }

    .nav-links a:last-child {
        padding-left: 11px;
        padding-right: 11px;
    }

    .band-gallery {
        padding: 50px 10px;
    }

    .gallery-button {
        display: none;
    }

    .why-hire-us,
    .band-members {
        padding: 60px 18px;
    }

    .why-content h2,
    .members-content h2 {
        font-size: 2rem;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

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

    .booking {
        padding: 70px 18px;
    }
        .tribute {
        padding: 60px 18px;
    }

    .tribute-content {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .tribute-photo {
        max-width: 520px;
        margin: 0 auto;

        width: 100%;
    }

    .tribute-photo img {
        height: 500px;

        object-position: 50% 78%;
    }

    .tribute-text {
        text-align: left;
    }
}