/*TO ADD CUSTOM FONTS, IMPORT THEN ACTIVATE*/
/*Import multiple fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cinzel:wght@400&display=swap" rel="stylesheet');

/* 2. Basic reset with font - Add this AFTER the import */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*style site title*/
.main-header__site-title a {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #443253;
}

/* All headers use IM Fell English SC */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* All paragraphs use Barlow */
p {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}
/* Set Barlow on body to inherit to most elements */
body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: #333; /* Default text color */
}

/* Force Barlow on specific elements that might not inherit */
.footer,
.footer p,
.footer a,
.footer li {
    font-family: 'Barlow', sans-serif !important;
}

/* Navigation menu */
.main-navigation,
.main-navigation a,
.main-navigation li {
    font-family: 'Barlow', sans-serif;
}

/* All buttons */
button,
input[type="button"],
input[type="submit"],
.cta-button,
.wp-block-button__link {
    font-family: 'Barlow', sans-serif;
    font-weight: 500; /* Medium weight for buttons */
}

/* Forms */
input,
textarea,
select {
    font-family: 'Barlow', sans-serif;
}



/*TO FIX THE BOUNDARIES FOR FACETED BROWSE FILTER OPTIONS*/
.facet label {
    display: inline flex;}


/*TO MODIFY STYLING FOR SIDEBAR*/
.faceted-browse-page #section-sidebar,.block-facetedBrowsePreview #section-sidebar
{width:30%}

.faceted-browse-page #section-sidebar .field,.faceted-browse-page #section-sidebar fieldset,.block-facetedBrowsePreview #section-sidebar .field,.block-facetedBrowsePreview #section-sidebar fieldset
{box-shadow:none;
	background-color:#cae4fa
