/*
Theme Name: PingITT Theme
Theme URI: https://pingitt.com/
Author: Fatih Jusovic
Author URI: https://pingitt.com/
Description: A modern, modular WordPress theme built from scratch with Bootstrap 5 based on PingITT design.
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: pingitt
Tags: custom-background, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

Bootstrap 5 is loaded via CDN in functions.php.
Customizer settings control the CSS variables below.
*/

:root {
    --pingitt-primary-color: #f4645a;
    --pingitt-secondary-color: #009688;
    --pingitt-body-bg: #ffffff;
    --pingitt-text-color: #434343;
    --pingitt-font-family: "Montserrat", sans-serif;
}

body {
    background-color: var(--pingitt-body-bg);
    color: var(--pingitt-text-color);
    font-family: var(--pingitt-font-family);
}

a {
    color: var(--pingitt-primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--pingitt-secondary-color);
}
