/* =========================
   TYPOGRAPHY TUNING
========================= */

/* Global paragraph tuning */
p {
    font-size: 1.05rem;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

/* Section headings */
.site-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}

/* Smaller headings (future-proof) */
.site-content h3 {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
}

/* Uppercase UI text */
.button-primary,
.button-secondary,
.primary-menu li a,
.footer-menu li a {
    letter-spacing: 0.14em;
}

/* Text max-width for readability */
.section-inner > p,
.section-inner > .reveal > p {
    max-width: 700px;
}

/* =========================
   GIGS LIST – TYPOGRAPHIC
========================= */

.gigs-list {
    margin-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.gig-item {
    font-size: var(--fs-sm);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.gig-item .gig-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0.8rem;
    margin-inline: 0.55rem;
}

.gig-item .gig-sep::before {
    content: "\2022";
    opacity: 0.4;
    font-size: 0.75em;
    line-height: 1;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .gig-item .gig-sep {
        min-width: 1.15rem;
        margin-inline: 0.28rem;
    }

    .gig-item .gig-sep::before {
        opacity: 0.32;
    }
}

/* =========================
   HERO TEXT TUNING
========================= */

.video-overlay h1 {
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.video-overlay p {
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
