/* ═══════════════════════════════════════════════════════════════════
   ABOUT.CSS – Styles specific to about pages
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   ABOUT PAGE ADJUSTMENTS
   ───────────────────────────────────────────── */
body {
    padding-top: var(--nav-height);
}

nav {
    /* override base.css for about pages - always visible */
    background: rgba(6, 12, 6, 0.92);
}

/* ─────────────────────────────────────────────
   ABOUT PAGE HEADER
   ───────────────────────────────────────────── */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 30%,
            rgba(57, 255, 20, 0.08) 0%,
            transparent 60%),
        var(--bg-section);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.page-header h1 {
    font-family: 'Metal Mania', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 8px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 0 6px #fff, 0 0 14px #fff, 0 0 28px var(--green-neon),
        0 0 60px var(--green-neon), 0 0 100px var(--green-soft);
    margin-bottom: 1.5rem;
}

.page-header .subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--green-mid);
    text-decoration: none;
    transition: color 0.25s;
}

.breadcrumb a:hover {
    color: var(--green-neon);
}

/* ─────────────────────────────────────────────
   CONTENT SECTIONS
   ───────────────────────────────────────────── */
section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--green-neon);
    box-shadow: 0 0 10px var(--green-neon);
    border-radius: 2px;
}

.content-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.content-text p strong,
.content-text strong {
    color: var(--green-neon);
    font-weight: 600;
}

.content-text em {
    color: var(--text-light);
    font-style: italic;
}

.highlight-box {
    background: var(--bg-card);
    border-left: 4px solid var(--green-neon);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.08);
}

.highlight-box p {
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   MEMBERS GRID
   ───────────────────────────────────────────── */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.member-card {
    background: var(--bg-card);
    border: 1px solid var(--green-dim);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.15);
    border-color: rgba(57, 255, 20, 0.3);
}

.member-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-neon);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.member-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.member-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────
   DISCOGRAPHY QUICK LIST
   ───────────────────────────────────────────── */
.disco-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.disco-list li {
    background: var(--bg-card);
    border: 1px solid var(--green-dim);
    border-left: 3px solid var(--green-neon);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.disco-list li:hover {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.12);
    border-left-color: var(--green-soft);
}

.disco-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.disco-year {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ─────────────────────────────────────────────
   PLATFORMS SECTION
   ───────────────────────────────────────────── */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1.4rem 1.8rem;
    border: 1px solid var(--green-dim);
    border-radius: 8px;
    background: var(--bg-card);
    transition: color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.platform-link:hover {
    color: var(--green-neon);
    border-color: var(--green-neon);
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.22);
    transform: translateY(-4px);
}

.platform-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   CTA BUTTON
   ───────────────────────────────────────────── */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--green-neon);
    color: var(--bg-dark);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
}

.cta-button:focus {
    outline: 2px solid var(--green-neon);
    outline-offset: 4px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 680px) {
    .page-header {
        padding: 6rem 2rem 3rem;
    }

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

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