/* ==========================================================================
   1. IMPORT BRAND FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400&display=swap');

/* ==========================================================================
   2. ADMIN TOOLBAR & EDIT CONTROLS (Fix High-Contrast Legibility)
   ========================================================================== */
/* Keep admin bar & toolbar text crisp and easy to read */
#edit-bar, .plone-toolbar, #portal-personaltools, #edit-zone {
    background-color: #2E3138 !important; /* Neutral dark grey */
    color: #FFFFFF !important;
}

#edit-bar a, .plone-toolbar a, #portal-personaltools a {
    color: #FFFFFF !important; /* Clear white text for admin options */
    text-shadow: none !important;
}

/* ==========================================================================
   3. PUBLIC BRAND HEADER & NAVIGATION
   ========================================================================== */
/* Main public header area only */
#portal-header, header.navbar {
    background-color: #1E355D !important; /* Heritage Navy */
    color: #FFFFFF !important;
    border-bottom: 4px solid #C79A35 !important; /* Library Gold divider */
}

/* Navigation bar */
#portal-globalnav, #nav-main {
    background-color: #1E355D !important;
}

#portal-globalnav li a, .navbar-nav li a {
    color: #FAF8F4 !important; /* Warm Ivory text */
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
}

/* Active & Hover Navigation Items */
#portal-globalnav li.selected a, 
.navbar-nav li.active a, 
#portal-globalnav li a:hover {
    background-color: #C79A35 !important; /* Library Gold highlight */
    color: #1E355D !important; /* Heritage Navy text */
}

/* ==========================================================================
   4. HEADINGS & TYPOGRAPHY
   ========================================================================== */
h1, .documentFirstHeading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1E355D !important; /* Heritage Navy */
    border-bottom: 2px solid #C79A35 !important; /* Library Gold accent */
    padding-bottom: 6px !important;
    margin-bottom: 16px !important;
}

h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    color: #1E355D !important;
    font-weight: 600 !important;
}

h4, h5, h6, .portlet-header, .subtitle {
    font-family: 'Cinzel', Georgia, serif !important;
    color: #1E355D !important;
}

/* ==========================================================================
   5. INTERACTIVE BUTTONS & LINKS
   ========================================================================== */
.btn-primary, button, input[type="submit"], a.button, .portlet-footer a {
    background-color: #C79A35 !important; /* Library Gold */
    color: #1E355D !important; /* Heritage Navy */
    font-weight: bold !important;
    border: 1px solid #1E355D !important;
    border-radius: 4px !important;
}

.btn-primary:hover, button:hover, input[type="submit"]:hover {
    background-color: #1E355D !important;
    color: #FAF8F4 !important;
}

a {
    color: #1E355D !important;
    text-decoration: underline !important;
}

a:hover {
    color: #C79A35 !important;
}

/* ==========================================================================
   6. GLOBAL BODY & BACKGROUND
   ========================================================================== */
body, #content {
    background-color: #FAF8F4 !important; /* Warm Ivory canvas */
    color: #383838 !important; /* Deep Charcoal text */
    font-family: Arial, Helvetica, sans-serif !important;
    line-height: 1.5 !important;
}