/*
Theme Name: CollegeKampus
Theme URI: https://collegekampus.com
Author: CollegeKampus EduPortal
Author URI: https://collegekampus.com
Description: Production-Ready, High-Performance Higher Education & Entrance Exam Intelligence Portal Theme for WordPress. Features interactive LPUNEST/JEE guides, eligibility calculators, exam timelines, Table of Contents, admission counseling lead generation, and responsive dark/light mode.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: education, news, blog, custom-menu, featured-images, right-sidebar, theme-options, translation-ready, two-columns, responsive-layout
Text Domain: collegekampus
*/

/* Custom Utilities and Theme Adjustments */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

body {
  font-family: var(--font-sans);
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

body.dark-mode {
  background-color: #020617;
  color: #f8fafc;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.dark-mode ::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.dark-mode ::-webkit-scrollbar-thumb {
  background: #334155;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Reading Progress Bar */
#reading-progress-bar {
  transition: width 0.1s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
