/*
Theme Name: bsrk-gemini
Theme URI: https://example.com/bsrk-child-theme
Author: Your Name
Author URI: https://example.com/
Description: A child theme for the Storefront theme, with a custom hero section.
Version: 1.0.0
Template: storefront
Text Domain: bsrk-child
*/

/* Apply the Crimson Text font to the headings */
.hero-text h2 {
    font-family: 'Crimson Text', serif !important;
}

/* Apply the Anonymous Pro font to the paragraphs */
.hero-text p {
    font-family: 'Anonymous Pro', monospace !important;
}

/* Hide the site info credit from Storefront theme */
.site-info {
    display: none !important;
}

/* Custom CSS from user to hide search and header elements */
.search-field,
.woocommerce-product-search
{
    display: none !important;
}

/* Set a dark background and light text color for the entire page body */
body {
    background-color: #15151D !important;
    color: #EEEBD8 !important;
}

/* Apply the same background and text color to the site header and footer to ensure consistency */
.site-header, .site-footer {
    background-color: #15151D !important;
    color: #EEEBD8 !important;
}

img.h-4 {
    height: 0.5rem !important; /* Use !important to override the existing one */
  }