/*
Theme Name: CTET Assam Premium Theme
Theme URI: https://royacademy.example
Author: Roy Academy
Author URI: https://royacademy.example
Description: A premium, fast, mobile-first WordPress theme for CTET Assam by Roy Academy. Built for online coaching brands with a clean education-portal design, course CTA sections, study-note styling, and full WordPress Customizer support. No build tools, no jQuery dependency, system fonts only.
Version: 1.2.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ctet-assam-premium
Tags: education, blog, custom-colors, custom-logo, custom-menu, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* -------------------------------------------------------------------------
   This file is required by WordPress to register the theme.
   The full styling lives in assets/css/main.css and assets/css/responsive.css
   (enqueued in functions.php). Only base variables and a reset live here so
   the theme renders sanely even before the asset files load.
   ------------------------------------------------------------------------- */

:root{
  --c-primary:#0B5ED7;
  --c-primary-dark:#0A4FB5;
  --c-navy:#071B3A;
  --c-sky:#EAF3FF;
  --c-yellow:#FFC107;
  --c-yellow-dark:#E0A800;
  --c-green:#16A34A;
  --c-bg:#F8FAFC;
  --c-card:#FFFFFF;
  --c-text:#111827;
  --c-text-soft:#4B5563;
  --c-border:#E5E7EB;

  --radius-sm:8px;
  --radius:14px;
  --radius-lg:22px;

  --shadow-sm:0 1px 2px rgba(7,27,58,.06), 0 1px 3px rgba(7,27,58,.08);
  --shadow:0 6px 18px rgba(7,27,58,.08);
  --shadow-lg:0 18px 40px rgba(7,27,58,.14);

  --maxw:1180px;
  --gap:24px;

  --font:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family:var(--font);
  color:var(--c-text);
  background:var(--c-bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;height:auto;display:block;}

a{color:var(--c-primary);text-decoration:none;}
a:hover{text-decoration:underline;}

h1,h2,h3,h4{line-height:1.2;color:var(--c-navy);margin:0 0 .5em;}

/* Accessibility: visible focus for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:3px solid var(--c-yellow);
  outline-offset:2px;
}

/* Screen-reader-only helper (WordPress standard) */
.screen-reader-text{
  border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);
  height:1px;width:1px;margin:-1px;padding:0;overflow:hidden;
  position:absolute!important;word-wrap:normal!important;
}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:100000;
  background:var(--c-navy);color:#fff;padding:12px 18px;border-radius:0 0 8px 0;
}
.skip-link:focus{left:0;}
