/*
Theme Name: TradingVidhyalaya Theme
Theme URI: https://example.com
Author: TradingVidhyalaya
Author URI: https://example.com
Description: Custom WordPress theme for a stock market education institute with course selling and student dashboard.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tradingvidhyalaya
Tags: education, courses, custom, responsive, dark, light
*/

:root {
  --tv-bg: #f9fafb;
  --tv-surface: #ffffff;
  --tv-surface-2: #ffffff;
  --tv-text: #111827;
  --tv-muted: #6b7280;
  --tv-accent: #10b981;
  --tv-accent-2: #0ea5a5;
  --tv-danger: #ef4444;
  --tv-border: #e5e7eb;
  --tv-light-bg: #f3f4f6;
  --tv-light-text: #111827;
  --tv-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --tv-radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tv-text);
  background: var(--tv-bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}
