/*
Theme Name: Aurum - Child Theme
Theme URI: https://laborator.co/themes/aurum/
Author: Laborator
Author URI: http://laborator.co/
Description: Use this theme if you want to extend features of Aurum theme or prevent overwriting the changes you make when new theme update is available.
Version: 1.0
Template: aurum
Text Domain: aurum
*/

/* Custom Colors for Edenroot Press - General Body & Headings */
body {
    background-color: #F6F5ED; /* Light, warm off-white from your logo background */
}

body,
h1, h2, h3, h4, h5, h6 {
    color: #323C2A; /* Dark muted green/charcoal from your logo text */
}

a {
    color: #323C2A;
}

a:hover,
a:focus {
    color: #5D6C52;
}


/* Custom Colors for the Header */
/* You might need to adjust these selectors based on your theme's actual HTML structure */
/* Common header selectors include: #header, .main-header, .site-header, .header-wrapper */
.header-wrapper, /* This is a common wrapper class for Aurum's header */
#site-header,
.site-header {
    background-color: #F6F5ED; /* Apply the light background to the header */
    color: #323C2A; /* Apply the dark text color to header elements */
}

/* Ensure navigation links within the header also get the dark color */
.header-wrapper nav a,
#site-navigation a,
.main-navigation a {
    color: #323C2A !important; /* Use !important if needed to override existing theme styles */
}

.header-wrapper nav a:hover,
#site-navigation a:hover,
.main-navigation a:hover {
    color: #5D6C52 !important; /* Lighter hover color for header links */
}


/* Hide Search and Cart Icons in the Header */
/* These are common selectors for search and cart icons in WordPress themes. */
/* You might need to inspect your site to find the exact class/ID if these don't work. */
.header-right .header-search-icon, /* Example for search icon within a header right section */
.header-right .header-cart-icon,   /* Example for cart icon within a header right section */
.search-button,                    /* Common class for search toggle/button */
.top-menu-cart,                    /* Common class for cart icon/widget */
.header-icon-search,               /* Another common class for search icon */
.header-icon-cart,                 /* Another common class for cart icon */
.wcml-switcher,                    /* If it's a multi-currency/language switcher that looks like a cart */
.header-extras .search-form-opener, /* Specific to some themes */
.header-extras .cart-dropdown-opener, /* Specific to some themes */
.header-icon.header-search,        /* Yet another common combo */
.header-icon.header-cart           /* Yet another common combo */
{
    display: none !important; /* This will completely hide the elements */
}