/* ============================================================
   NotFound.razor.css — Antologa 404
   Variables from app.css only. Zero inline styles.
   ============================================================ */

/* ── Page shell ──────────────────────────────────────── */
.nf-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--antologa-white);
}

/* ── Container ───────────────────────────────────────── */
.nf-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* ── Hero stack ──────────────────────────────────────── */
.nf-hero {
    width: 100%;
}

/* ── Scene: SVG fills this, content overlaid on top ─── */
.nf-scene {
    position: relative;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
}

/* ── SVG: natural size, sets the scene height ────────── */
.nf-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Overlay: absolutely centered over the SVG ───────── */
.nf-overlay {
    position: absolute;
    inset: 0;
    gap: 0 !important;
}

/* ── 404 number ──────────────────────────────────────── */
.nf-number {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(8rem, 14vw, 13rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    color: var(--antologa-dark) !important;
    margin-bottom: 0.4rem !important;
}

/* ── Title ───────────────────────────────────────────── */
.nf-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--antologa-dark) !important;
    margin-bottom: 1rem !important;
}

/* ── Body ────────────────────────────────────────────── */
.nf-body {
    font-family: 'Nunito', sans-serif !important;
    font-size: clamp(1.3rem, 1.8vw, 1.6rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: var(--antologa-gray) !important;
    max-width: 42rem;
    text-align: center;
    margin-bottom: 2.4rem !important;
}

/* ── CTA ─────────────────────────────────────────────── */
.nf-btn {
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    background-color: var(--antologa-primary) !important;
    color: var(--antologa-white) !important;
    border-radius: 10rem !important;
    height: 5.2rem !important;
    padding: 0 4.8rem !important;
    transition: background-color 0.2s ease, transform 0.15s ease !important;
}

    .nf-btn:hover {
        background-color: var(--antologa-secondary) !important;
        transform: translateY(-2px);
    }

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .nf-btn {
        height: 4.8rem !important;
        padding: 0 3.2rem !important;
    }
}
