/*
Theme Name: CM Core
Author: Chemistry Marketing
Description: A clean, minimal base theme for WordPress development.
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: cm-core
*/

/* Basic Reset */

/* --- Global Header Layout --- */
.site-header {
    width: 100%;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

/* Standard Header Styles (Background is now handled by the Customiser) */
.site-header.is-standard {
    position: relative;
    border-bottom: 1px solid #ddd;
}

/* Transparent Header Styles */
.site-header.is-transparent {
    background-color: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* Adjust text color for transparency */
.site-header.is-transparent .site-title a,
.site-header.is-transparent .main-navigation a {
    color: #ffffff;
}

