/*
Theme Name: Thalekhu Construction
Theme URI: https://example.com/thalekhu-construction
Author: Bonez Booth
Author URI: https://example.com/bonez-booth
Description: A professional and elegant WordPress theme built for Thalekhu General Construction & Maintenance.
Version: 1.0
Text Domain: thalekhu
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-layout, two-columns, custom-header, custom-menu
*/

/* --- Basic Reset and Typography --- */

:root {
    --color-primary: #FF6600; /* Orange from the logo */
    --color-secondary: #000000; /* Black */
    --color-white: #FFFFFF; /* White */
    --font-heading: 'Roboto', sans-serif; /* We'll assume these for now, and enqueue them later */
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-secondary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
}

.color-accent {
    color: var(--color-primary);
}

.bg-accent {
    background-color: var(--color-primary);
}