/*
Theme Name: NCPSL Government Theme
Theme URI: https://ncpsl.intileo.dev
Author: Intileo Technologies
Author URI: https://intileo.com
Description: Custom WordPress theme for National Council for Promotion of Sindhi Language (NCPSL), Ministry of Education, Government of India. GIGW 3.0 compliant, WCAG AA accessible, CERT-In security ready. Uses Elementor for content pages, custom PHP for header/footer.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ncpsl
Tags: government, education, accessibility-ready, translation-ready, wcag, gigw
*/

/* ==================================== */
/* NCPSL Government Theme — Base Styles */
/* ==================================== */

/* Reset & Typography Foundation */
:root {
    --ncpsl-navy: #1a2e4c;
    --ncpsl-maroon: #8B1A1A;
    --ncpsl-saffron: #FF9933;
    --ncpsl-green: #138808;
    --ncpsl-white: #FFFFFF;
    --ncpsl-off-white: #F8F9FA;
    --ncpsl-dark: #333333;
    --ncpsl-muted: #666666;
    --ncpsl-border: #DEE2E6;
    --ncpsl-font: 'Poppins', 'Noto Sans', sans-serif;
    --ncpsl-devanagari: 'Noto Sans Devanagari', 'Poppins', serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--ncpsl-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ncpsl-dark);
    background: var(--ncpsl-off-white);
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--ncpsl-saffron);
    color: var(--ncpsl-navy);
    padding: 8px 20px;
    z-index: 100000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--ncpsl-navy);
    outline-offset: 2px;
}

/* Focus visible for keyboard nav */
*:focus-visible {
    outline: 3px solid var(--ncpsl-saffron);
    outline-offset: 2px;
}

/* Container */
.ncpsl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Main Content Area */
#main-content {
    min-height: 500px;
    background: var(--ncpsl-white);
}
