/*
Theme Name: EduVisa
Theme URI: https://eduvisa.com.bd
Author: EduVisa Team
Author URI: https://eduvisa.com.bd
Description: A custom, Gutenberg‑friendly WordPress theme built for EduVisa Global.  The theme features bespoke blocks and custom post types to power a modern study abroad consultancy website.  Sections such as the hero, destination cards, counsellor profiles and testimonials are configurable via the block editor so that non‑technical users can keep the site fresh without writing code.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eduvisa
*/

/*
 * Theme core styles
 *
 * This file holds a few sensible defaults.  Real sites should build
 * on top of a utility framework or author their own CSS in
 * assets/css/main.css.  Use variables to maintain colour harmony with
 * the brand: navy (#0B2D5C) and gold (#C89B2C).  Keep typography
 * simple and spacious.
 */

:root {
    --eduvisa-navy: #0B2D5C;
    --eduvisa-gold: #C89B2C;
    --eduvisa-light: #FAFAFA;
    --eduvisa-dark: #111;
    --font-base: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--eduvisa-dark);
    background: var(--eduvisa-light);
    line-height: 1.6;
}

a {
    color: var(--eduvisa-navy);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}