﻿.hiw {
    --bg: #0b0b0b;
    --fg: #eaeaea;
    --muted: #bdbdbd;
    --card: #141414;
    --brand: #64b5ff;
    --ring: #2a2a2a;
    background: var(--bg);
    color: var(--fg);
    padding: 64px 16px;
    position: relative;
    z-index: 1
}

.hiw__wrap {
    max-width: 1100px;
    margin: 0 auto
}

.hiw__head {
    text-align: center;
    margin-bottom: 28px
}

.hiw h2 {
    font-size: 2rem;
    margin: 0 0 8px
}

.hiw__sub {
    color: var(--muted);
    margin: 0 0 18px
}

/* Radios hidden but still accessible to screen readers */
.hiw__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.hiw__tabs {
    display: inline-flex;
    gap: 8px;
    background: #101010;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--ring)
}

.hiw__tab {
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    user-select: none
}
/* Active tab styles (pure CSS) */
#tab-artists:checked ~ .hiw__head .hiw__tab[for="tab-artists"],
#tab-venues:checked ~ .hiw__head .hiw__tab[for="tab-venues"] {
    background: var(--card);
    color: var(--fg);
    box-shadow: 0 0 0 1px var(--ring) inset
}

.hiw__panels {
    position: relative
}

.hiw__steps {
    display: none;
    grid-template-columns: repeat(5,1fr);
    gap: 14px;
    margin: 18px auto 8px;
    padding: 0;
    list-style: none
}
/* Show the correct panel based on which radio is checked */
#tab-artists:checked ~ .hiw__panels #panel-artists {
    display: grid
}

#tab-venues:checked ~ .hiw__panels #panel-venues {
    display: grid
}

@media (max-width:1024px) {
    .hiw__steps {
        grid-template-columns: repeat(3,1fr)
    }
}

@media (max-width:720px) {
    .hiw__steps {
        grid-template-columns: 1fr
    }
}

.hiw__step {
    background: var(--card);
    border: 1px solid var(--ring);
    padding: 16px;
    border-radius: 14px
}

.hiw__num {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: #0a0a0a;
    font-weight: 800;
    margin-bottom: 8px
}

.hiw__step h3 {
    font-size: 1rem;
    margin: 4px 0 6px
}

.hiw__step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5
}

.hiw__cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap
}

.hiw__btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--ring);
    text-decoration: none;
    color: var(--fg);
    background: #111
}

.hiw__btn--primary {
    background: var(--brand);
    color: #0b0b0b;
    border-color: transparent;
    font-weight: 700
}

.hiw a:hover {
    opacity: .9
}
/* -------- Footer (Island Gigs) -------- */
:root {
    --fg: #eaeaea;
    --muted: #bdbdbd;
    --bg: #0b0b0b;
    --card: #141414;
    --ring: #2a2a2a;
    --brand: #64b5ff;
}

.site-footer {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 30%), var(--bg);
    border-top: 1px solid var(--ring);
    color: var(--fg);
    padding: 16px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 20px;
}

.footer-left {
    display: grid;
    gap: 6px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .2px;
}

.footer-logo {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--brand);
    color: #0a0a0a;
    font-size: 16px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.25) inset;
}

.footer-name {
    font-size: 14px;
    color: var(--fg);
}

.footer-copy {
    font-size: 12px;
    color: var(--muted);
}

/* Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--ring);
    padding: 8px;
    border-radius: 999px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--fg);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    transition: transform .12s ease, background .12s ease, opacity .12s ease;
    position: relative;
}

    .footer-link i {
        font-size: 14px;
        opacity: .9;
    }

    .footer-link:hover {
        background: #151515;
        transform: translateY(-1px);
    }

    .footer-link:active {
        transform: translateY(0);
    }

    .footer-link:focus-visible {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
        border-radius: 12px;
    }

/* Mobile */
@media (max-width:720px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* Optional light theme override */
.theme-light .site-footer {
    --bg: #ffffff;
    --fg: #1f2937;
    --muted: #6b7280;
    --card: #f8fafc;
    --ring: #e5e7eb;
    --brand: #2563eb;
    background: linear-gradient(180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 30%), var(--bg);
}

/* If you kept 'ml-1' somewhere else, harmless fallback: */
.ml-1 {
    margin-left: .25rem;
}

/* Center the badges as a group on all viewports */
.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; /* space between badges */
    flex-wrap: wrap; /* stack nicely if too narrow */
    max-width: 460px; /* keeps them as a tight group */
    margin-inline: auto; /* centers the whole group */
    margin-top: 16px;
}

/* Make sure nothing pushes them left */
.store-badge {
    display: inline-flex;
    float: none;
    margin: 0;
}

    /* Tidy image sizing + iOS baseline fix */
    .store-badge img {
        display: block;
        height: 48px; /* tweak as you like (44–56px works well) */
        width: auto;
        vertical-align: middle;
    }

@media (max-width:420px) {
    .store-badge img {
        height: 44px;
    }
}


/* ========= Founding Venues (scoped) ========= */
section.founding .section-head {
    max-width: 920px;
    margin: 24px auto 14px;
    padding: 0 12px;
    text-align: center;
}

    section.founding .section-head h2 {
        font-size: 28px;
        margin: 0;
    }

    section.founding .section-head .sub {
        font-weight: 600;
        font-size: 16px;
        margin-left: 8px;
        opacity: .8;
    }

    section.founding .section-head p {
        opacity: .85;
    }

section.founding .hi {
    background: #fff2b2;
    padding: 2px 8px;
    border-radius: 8px;
}

section.founding .founding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
}

section.founding .card {
    display: block; /* anchor reset */
    text-decoration: none;
    color: inherit; /* anchor reset */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

section.founding .card-img {
    position: relative;
    height: 140px;
    background: #f7f7f7;
}

    section.founding .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

section.founding .badge-gold {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #f7e6a1;
    border: 1px solid #d9b94e;
    border-radius: 999px;
    padding: 2px 10px;
    font-weight: 700;
    font-size: .72rem;
}

section.founding .card-body {
    padding: 10px;
}

    section.founding .card-body h3 {
        margin: 0 0 4px;
        font-size: 18px;
        line-height: 1.2;
    }

    section.founding .card-body .meta {
        opacity: .75;
        font-size: .9rem;
    }

/* Empty state */
section.founding .empty {
    max-width: 760px;
    margin: 12px auto;
    padding: 18px;
    border: 1px dashed #ddd;
    border-radius: 14px;
    text-align: center;
    background: #fff;
}

section.founding .muted {
    opacity: .7;
}

section.founding .small {
    font-size: .9rem;
}

/* ========= Founding Artists (scoped) ========= */
section.founding-artists .section-head {
    max-width: 920px;
    margin: 24px auto 14px;
    padding: 0 12px;
    text-align: center;
}

    section.founding-artists .section-head h2 {
        font-size: 28px;
        margin: 0;
    }

    section.founding-artists .section-head .sub {
        font-weight: 600;
        font-size: 16px;
        margin-left: 8px;
        opacity: .8;
    }

    section.founding-artists .section-head p {
        opacity: .85;
    }

section.founding-artists .artist-strip {
    display: flex;
    gap: 12px;
    padding: 0 12px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
}

section.founding-artists .artist-card {
    display: block;
    width: 220px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
}

    section.founding-artists .artist-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        background: #f7f7f7;
        display: block;
    }

section.founding-artists .artist-name {
    font-weight: 700;
    padding: 8px 10px 2px;
}

section.founding-artists .artist-tags {
    opacity: .75;
    padding: 0 10px 10px;
    font-size: .9rem;
}

/* Mobile: keep horizontal scroll behavior */
@media (max-width: 700px) {
    section.founding-artists .artist-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }
}

/* Optional: ensure Radzen button in empty states keeps rounded corners */
section.founding .empty .rz-button,
section.founding-artists .empty .rz-button {
    border-radius: 12px;
}

/* Constrain & center both sections */
section.founding,
section.founding-artists {
    max-width: 1100px;
    margin: 24px auto;
    padding: 0 12px;
    display: block; /* guard against global flex on <section> */
}

    /* Founding Artists — center the empty state box */
    section.founding-artists .empty {
        max-width: 760px;
        margin: 12px auto;
        padding: 18px;
        border: 1px dashed #ddd;
        border-radius: 14px;
        text-align: center;
        background: #fff;
        display: block;
    }

    section.founding-artists .muted {
        opacity: .7
    }

    section.founding-artists .small {
        font-size: .9rem
    }

    /* (keep your existing artist-strip rules)
   These ensure cards are centered when they exist */
    section.founding-artists .artist-strip {
        display: flex;
        gap: 12px;
        padding: 0 12px;
        max-width: 1100px;
        margin: 0 auto;
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }

@media (max-width:700px) {
    section.founding-artists .artist-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }
}

/* Make the gold pill readable on dark background */
section.founding .section-head .hi,
section.founding-artists .section-head .hi {
    background: #f7e6a1;
    border: 1px solid #d9b94e;
    color: #3b2e00; /* <- readable text color */
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    line-height: 1.2;
    margin-left: 6px;
}
section.founding .after-grid,
section.founding-artists .after-grid {
    text-align: center;
    margin-top: 10px
}

section.founding .badge-new,
section.founding-artists .tag-new {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #e6ffb3;
    border: 1px solid #90c24b;
    color: #1b3a00;
    font-weight: 700;
    font-size: .72rem;
    padding: 2px 8px;
    border-radius: 999px
}

section.founding-artists .artist-card {
    position: relative
}
/* for .tag-new placement */
/* ===== Founding Venues (scoped, no collisions) ===== */
section.founding .ig-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    /* make sure no global min-height sneaks in */
    min-height: unset !important;
    height: auto !important;
}

section.founding .ig-card-img {
    position: relative;
    height: 180px;
    background: #f7f7f7;
}

    section.founding .ig-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

section.founding .ig-badge-gold {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #f7e6a1;
    border: 1px solid #d9b94e;
    border-radius: 999px;
    padding: 2px 10px;
    font-weight: 700;
    font-size: .72rem;
    color: #3b2e00;
}

section.founding .ig-badge-new {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #e6ffb3;
    border: 1px solid #90c24b;
    color: #1b3a00;
    font-weight: 700;
    font-size: .72rem;
    padding: 2px 8px;
    border-radius: 999px;
}

/* This was the white band—now kept compact */
section.founding .ig-card-body {
    padding: 10px;
    background: #fff;
    min-height: 0 !important;
    height: auto !important;
}

    section.founding .ig-card-body h3 {
        margin: 0 0 4px;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
        background: none;
        padding: 0;
        border: 0;
        display: block;
        color: #111;
    }

    section.founding .ig-card-body .meta {
        opacity: .75;
        font-size: .9rem;
    }

/* ===== Founding Artists (matching rename) ===== */
section.founding-artists .artist-strip {
    display: flex;
    gap: 12px;
    padding: 0 12px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
}

@media (max-width:700px) {
    section.founding-artists .artist-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }
}

section.founding-artists .artist-card {
    display: block;
    width: 220px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

    section.founding-artists .artist-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

section.founding-artists .artist-name {
    font-weight: 700;
    padding: 8px 10px 2px;
}

section.founding-artists .artist-tags {
    opacity: .75;
    padding: 0 10px 10px;
    font-size: .9rem;
}

section.founding-artists .tag-new {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #e6ffb3;
    border: 1px solid #90c24b;
    color: #1b3a00;
    font-weight: 700;
    font-size: .72rem;
    padding: 2px 8px;
    border-radius: 999px;
}

/* Empty states (centered boxes) */
section.founding .empty,
section.founding-artists .empty {
    max-width: 760px;
    margin: 12px auto;
    padding: 18px;
    border: 1px dashed #ddd;
    border-radius: 14px;
    text-align: center;
    background: #fff;
}
/* Founding Artists – fix invisible text */
section.founding-artists .artist-card {
    background: #fff;
    color: #111 !important; /* text inside the link */
    text-decoration: none;
}

    section.founding-artists .artist-card:link,
    section.founding-artists .artist-card:visited {
        color: #111 !important;
    }

section.founding-artists .artist-name {
    color: #111 !important;
    font-weight: 700;
    padding: 8px 10px 2px;
    display: block;
}

section.founding-artists .artist-tags {
    color: #666 !important;
    padding: 0 10px 10px;
    font-size: .9rem;
    display: block;
}
/* Venue genre tags */
section.founding .ig-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
}

section.founding .tag-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f2f6;
    border: 1px solid #e3e5ec;
    color: #333;
    font-size: .75rem;
    font-weight: 600;
}

/* (optional) match style on artist cards too */
section.founding-artists .artist-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 6px 10px 10px;
}

    section.founding-artists .artist-tags .tag-pill {
        display: inline-block;
        padding: 2px 8px;
        border-radius: 999px;
        background: #f1f2f6;
        border: 1px solid #e3e5ec;
        color: #333;
        font-size: .75rem;
        font-weight: 600;
    }

@media (max-width:480px) {
    .ig-hero

{
    min-height: 46vh;
    padding: 28px 12px 16px;
}

.ig-hero h1 {
    margin-bottom: 6px;
}

.cta-row {
    margin-top: 6px;
    gap: 10px;
}

.store-badge img {
    height: 56px;
}

}

