/*
 Theme Name:   JBL CNC Global Link
 Theme URI:    https://jblglobal.co.za
 Description:  Child theme for JBL CNC Global Link, based on Hello Elementor. Provides brand-level customizations including colors, typography, and navigation.
 Author:       JBL CNC Global Link
 Author URI:   https://jblglobal.co.za
 Template:     hello-elementor
 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:  jbl-child-theme
*/

/* ==========================================================================
   Brand CSS Custom Properties
   ========================================================================== */

:root {
    /* Brand Colors */
    --jbl-primary: #122620;
    --jbl-accent: #df943a;
    --jbl-neutral: #ffffff;

    /* Brand Font */
    --jbl-font: 'Montserrat', sans-serif;
    --jbl-font-regular: 400;
    --jbl-font-medium: 500;
    --jbl-font-semibold: 600;
}

/* ==========================================================================
   Base Typography and Body Styles
   ========================================================================== */

body {
    font-family: var(--jbl-font);
    font-weight: var(--jbl-font-regular);
    color: var(--jbl-primary);
    background-color: var(--jbl-neutral);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--jbl-font);
    font-weight: var(--jbl-font-semibold);
    color: var(--jbl-primary);
}

a {
    color: var(--jbl-accent);
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--jbl-primary);
}
