/*
Theme Name: Sthaaz (Child)
Theme URI: https://sthaaz.com
Description: Custom child theme for Sthaaz portfolio with creative and bold design elements
Version: 1.0.0
Template: generatepress
Author: Sthaaz
Author URI: https://sthaaz.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sthaaz-child
Domain Path: /languages
*/

/* Import CSS Variables */
@import url('./assets/css/variables.css');

/* Import Creative & Bold Styling */
@import url('./assets/css/creative-bold.css');

/* Child Theme Custom Styles */
:root {
  /* Additional custom properties can be added here */
}

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

/* Ensure child theme styles override parent */
a {
  color: var(--color-primary);
  transition: color var(--transition-default);
}

a:hover {
  color: var(--color-accent);
}
