/* ==========================================================
   Spokane Strong Music Fest — site styling
   Derived from the event flyer: cream/parchment background,
   bold outlined black-on-orange display type, navy mountain
   silhouettes, and a sunset-orange-to-red accent gradient.
   ========================================================== */

:root {
    --ss-cream: #EDE3CF;
    --ss-navy: #1E2F3D;
    --ss-black: #0A0A0A;
    --ss-orange: #F26B3A;
    --ss-red-orange: #E8432C;
    --ss-offwhite: #F5F0E6;

    /* Headline font. Want to try a different one? Just change the
       name below AND the matching name in spokane-strong-festival.php
       (search for "Archivo Black" in that file). A few good swaps
       that keep the same bold, punchy feel:
         - 'Archivo Black' (current — clean, modern, heavy)
         - 'Bebas Neue' (tall, condensed, very "festival poster")
         - 'League Gothic' (similar to Bebas Neue, slightly softer) */
    --ss-font-display: 'Archivo Black', Impact, sans-serif;
    --ss-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --ss-font-accent: 'Fredoka', sans-serif;

    --ss-radius: 10px;
    --ss-shadow: 0 6px 20px rgba(10, 10, 10, 0.12);
}

/* ---------- Base ---------- */
body {
    background-color: var(--ss-cream);
    font-family: var(--ss-font-body);
    color: var(--ss-black);
}

.ssf-single-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

h1, h2, h3, h4 {
    font-family: var(--ss-font-display);
    letter-spacing: 0.5px;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--ss-black);
}

.ssf-archive-title {
    font-size: 3rem;
    text-align: center;
    text-shadow: 3px 3px 0 var(--ss-orange);
    margin-bottom: 40px;
}

.ssf-archive-section-title {
    font-size: 1.8rem;
    border-bottom: 3px solid var(--ss-navy);
    padding-bottom: 10px;
    margin: 50px 0 24px;
}

/* ---------- Eyebrow / badge ---------- */
.ssf-eyebrow {
    display: inline-block;
    font-family: var(--ss-font-accent);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--ss-navy);
    color: var(--ss-offwhite);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

/* ---------- Lineup grid / cards ---------- */
.ssf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.ssf-card {
    display: block;
    background: #fff;
    border-radius: var(--ss-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--ss-shadow);
    border-top: 5px solid var(--ss-orange);
    background-image: linear-gradient(180deg, var(--ss-orange), var(--ss-red-orange));
    background-repeat: no-repeat;
    background-size: 100% 5px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ssf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 10, 10, 0.18);
}

.ssf-card-image {
    aspect-ratio: 4 / 3;
    background: var(--ss-navy);
    overflow: hidden;
}

.ssf-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ssf-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ss-navy), #2c4459);
}

.ssf-card-body {
    padding: 16px 18px 20px;
}

.ssf-card-name {
    font-size: 1.15rem;
    margin: 0 0 4px;
    text-transform: none;
    letter-spacing: 0;
}

.ssf-card-tagline {
    font-family: var(--ss-font-body);
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 8px;
}

.ssf-card-schedule {
    font-family: var(--ss-font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ss-red-orange);
    margin: 0;
}

.ssf-empty {
    font-style: italic;
    color: #666;
}

/* ---------- Pending / more info coming soon ---------- */
.ssf-pending-section {
    margin-top: 20px;
    padding: 20px 24px;
    background: rgba(30, 47, 61, 0.05);
    border: 1px dashed var(--ss-navy);
    border-radius: var(--ss-radius);
}

.ssf-pending-heading {
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: var(--ss-navy);
}

.ssf-pending-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.ssf-pending-list li a {
    font-family: var(--ss-font-accent);
    font-weight: 500;
    color: var(--ss-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--ss-orange);
}

.ssf-pending-list li a:hover {
    color: var(--ss-red-orange);
}

/* Small photo + name cards for the "More Info Coming Soon" group */
.ssf-pending-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.ssf-pending-card {
    width: 110px;
    text-align: center;
}

.ssf-pending-card-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 8px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--ss-shadow);
    background: var(--ss-navy);
}

.ssf-pending-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ssf-pending-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ss-font-display);
    font-size: 1.8rem;
    color: var(--ss-offwhite);
}

.ssf-pending-card-name {
    font-family: var(--ss-font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    color: var(--ss-navy);
}

.ssf-pending-card-tagline {
    font-size: 0.75rem;
    color: #777;
    margin: 2px 0 0;
}

/* ---------- Tickets button ---------- */
.ssf-tickets-button {
    display: inline-block;
    font-family: var(--ss-font-accent);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-red-orange));
    padding: 16px 36px;
    border-radius: 999px;
    box-shadow: var(--ss-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ssf-tickets-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(232, 67, 44, 0.35);
    color: #fff;
}

/* ---------- Single lineup entry page ---------- */
.ssf-single-hero {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 30px;
}

.ssf-single-photo {
    flex: 0 0 320px;
    max-width: 320px;
    border-radius: var(--ss-radius);
    overflow: hidden;
    box-shadow: var(--ss-shadow);
}

.ssf-single-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.ssf-single-heading {
    flex: 1 1 320px;
}

.ssf-single-title {
    font-size: 2.6rem;
    text-shadow: 2px 2px 0 var(--ss-orange);
    margin: 0 0 8px;
}

.ssf-single-tagline {
    font-family: var(--ss-font-accent);
    font-size: 1.1rem;
    color: var(--ss-navy);
    margin: 0 0 10px;
}

.ssf-single-schedule {
    font-family: var(--ss-font-accent);
    font-weight: 600;
    color: var(--ss-red-orange);
    margin: 0 0 16px;
}

.ssf-single-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ssf-link-pill {
    font-family: var(--ss-font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ss-offwhite);
    background: var(--ss-navy);
    padding: 8px 16px;
    border-radius: 999px;
    transition: background 0.15s ease;
}

.ssf-link-pill:hover {
    background: var(--ss-black);
    color: var(--ss-offwhite);
}

.ssf-link-pill--music {
    background: var(--ss-orange);
    color: var(--ss-black);
}

.ssf-link-pill--music:hover {
    background: var(--ss-red-orange);
    color: #fff;
}

.ssf-link-pill--social {
    background: transparent;
    color: var(--ss-navy);
    border: 1.5px solid var(--ss-navy);
}

.ssf-link-pill--social:hover {
    background: var(--ss-navy);
    color: var(--ss-offwhite);
}

.ssf-single-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 30px;
}

.ssf-single-bio--pending {
    font-style: italic;
    color: #666;
}

.ssf-single-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.ssf-gallery-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--ss-radius);
    box-shadow: var(--ss-shadow);
}

.ssf-back-link a {
    font-family: var(--ss-font-accent);
    font-weight: 500;
    color: var(--ss-navy);
    text-decoration: none;
}

.ssf-back-link a:hover {
    color: var(--ss-red-orange);
}

/* ---------- Sunset/mountain divider ---------- */
.ssf-sunset-divider {
    width: 100%;
    line-height: 0;
    margin: 10px 0;
}

.ssf-sunset-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .ssf-single-title {
        font-size: 2rem;
    }
    .ssf-single-photo {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .ssf-archive-title {
        font-size: 2.2rem;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .ssf-card,
    .ssf-tickets-button {
        transition: none;
    }
}
