/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
 Author:       Your Name
 Description:  A child theme for the Agency Management dashboard.
 Version:      1.0.0
*/
/* --- Custom Theme Styles --- */

/* 1. Define Color Palette as Variables */
:root {
    --primary-color: #006d77;
    --secondary-color: #83c5be;
    --accent-color: #edf6f9;
    --text-color: #000000;
}

/* 2. Apply Font and Base Colors */
body {
    font-family: 'Cinzel Decorative', serif;
    color: var(--text-color);
}

/* 3. Style Headings and Links */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}