/* ============================================================
   Legislatura PC Public — Design Tokens
   Source: https://legislaturachaco.gob.ar
   ============================================================ */

:root {
    /* Brand colours */
    --leg-primary: #f9068f;
    --leg-secondary: #7048b9;
    --leg-accent: #fed005;
    --leg-footer-bg: #303f46;

    /* Header tier 1 */
    --leg-header-gradient: linear-gradient(to right, #7048b9, #f9068f); /* fallback if image unavailable */
    --leg-header-tier1-bg-url: url('/img/banner.png');
    --leg-header-tier1-height: 60px;

    /* Header tier 2 */
    --leg-header-tier2-height: 80px;
    --leg-header-banner-url: url('/img/banner-nav.png');

    /* Typography */
    --leg-font-family: 'Nunito', sans-serif;
    --leg-font-family-ui: 'Roboto', sans-serif; /* used by MudBlazor components */
    --leg-nav-font-size: 0.95rem;
    --leg-nav-font-weight: 600;

    /* Neutrals */
    --leg-white: #ffffff;

    /* Footer */
    --leg-footer-text: var(--leg-white);
    --leg-footer-padding: 2.5rem 1.5rem;

    /* Content area */
    --leg-content-bg: #f5f5f5;
    --leg-content-max-width: 1200px;

    /* Carousel */
    --leg-carousel-height: 480px;
}


/* Global font override */
body {
    font-family: var(--leg-font-family);
}

/* Remove default body margin so header is flush; height: 100% anchors min-height: 100vh on mobile */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
