/* ==========================================================================
   Homepage — hall content styles.
   Pediment, columns, and fog live in components/museum-frame.css.
   Hall layout and section theming live in pages/museum-halls.css.
   This file contains only the hero content (text, CTAs) and shared section
   heading rules that don't fit neatly in a component.
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Hero entrance — the accessible text layer inside .hall--rotunda             */
/* -------------------------------------------------------------------------- */
.hero-eyebrow {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--color-olive-light);
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: var(--text-hero);
    font-weight: 900;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--color-parchment);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-stone-mid);
    margin-bottom: var(--space-8);
    line-height: var(--leading-snug);
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* -------------------------------------------------------------------------- */
/* Section headings — shared across all halls                                  */
/* -------------------------------------------------------------------------- */
.section-heading {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-8);
    position: relative;
    display: inline-block;
}

/* Gold underline accent */
.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--space-8);
}

.section-header .section-heading { margin-bottom: 0; }

.section-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-purple-light);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.section-link:hover { color: var(--color-gold); }

/* -------------------------------------------------------------------------- */
/* Decklist mockup — shared between hall--curator and any other pages          */
/* -------------------------------------------------------------------------- */
.decklist-mockup__line {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border-subtle);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
}

.decklist-mockup__line:last-child { border-bottom: none; }

.decklist-mockup__line span {
    color: var(--color-text-muted);
    min-width: 28px;
}

.decklist-mockup__line--in-stock { color: var(--color-success); }
.decklist-mockup__line--partial  { color: var(--color-warning); }
.decklist-mockup__line--missing  { color: var(--color-text-muted); text-decoration: line-through; }
