/*
Theme Name: Pixelhue Custom
Theme URI: https://pixelhue.com
Author: Antigravity
Author URI: https://antigravity.ai
Description: A custom theme based on the Tecnoled design, tailored for Pixelhue content with a matching color scheme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pixelhue-custom
*/

:root {
    --pixelhue-blue: #0056FF;
    --pixelhue-dark: #111111;
    --pixelhue-darker: #0a0a0a;
    --pixelhue-light: #f4f4f4;
    --pixelhue-text: #333333;
    
    /* Overrides for tecnoled styles if they used CSS variables */
    --primary-color: var(--pixelhue-blue);
    --secondary-color: var(--pixelhue-dark);
    --bg-color: var(--pixelhue-darker);
    --text-color: var(--pixelhue-light);
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--pixelhue-light);
}

a {
    color: var(--pixelhue-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: #3388ff;
}

/* Custom Navigation Styling */
.main-navigation {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
}
