
/* === ConstellationBurn Neve Child Theme Overrides === */

/* Base Background and Text */
body {
    background-color: #0B3D0B; /* Deep Forest */
    color: #3D2B1F; /* Earthy Brown */
    font-family: 'Merriweather', serif;
}

/* Links */
a {
    color: #E95C4B; /* Bonfire Ember */
    text-decoration: none;
}
a:hover, a:focus {
    color: #FDC787; /* Ember Glow */
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: #F7F3E9; /* Woodland Mist */
    color: #3D2B1F; /* Earthy Brown */
}

/* Footer */
.site-footer {
    background-color: #151515; /* Nightfall */
    color: #FFFFFF; /* Bright White */
}
.site-footer a {
    color: #FDC787;
}
.site-footer a:hover {
    color: #E95C4B;
}

/* Buttons */
button,
.wp-block-button__link,
input[type="submit"],
input[type="button"] {
    background-color: #E95C4B; /* Bonfire Ember */
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.6em 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #FDC787; /* Ember Glow */
    color: #3D2B1F;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #FDC787; /* Ember Glow */
    font-family: 'Raleway', sans-serif;
}

/* Widgets and Sidebar */
.widget {
    background-color: #F7F3E9; /* Woodland Mist */
    color: #3D2B1F;
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 1em;
}

/* Misc Accessibility Enhancements */
:focus {
    outline: 2px dashed #FDC787;
    outline-offset: 4px;
}
