/*
 Theme Name:   GeneratePress Child — Biblical Baby Names
 Theme URI:    https://biblicalnames.local/
 Description:  Child theme for the Biblical Baby Names Explorer. Inherits from
               GeneratePress; all bespoke styling and PHP overrides live here
               so parent-theme updates never wipe customisation.
 Author:       Biblical Baby Names
 Template:     generatepress
 Version:      0.1.0
 License:      GPL-2.0-or-later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  generatepress-child
*/

/* ============================================================================
   Site-wide customisations live below. The plugin loads its OWN stylesheet
   (assets/css/bbn.css) only on the name pages / archives / homepage — those
   styles are scoped with `.bbn-*` so they will never clash with what you
   add here.

   Use this file for: header/footer styling, blog post styling, widget areas,
   general typography overrides, brand colours that apply across the site.
   ============================================================================ */

/* Example placeholder — tighten this later when you settle on brand fonts. */
:root {
    --site-accent: #b78a3e;   /* gold, matches the plugin */
    --site-navy:   #1f2a4a;
}

/* Make the GeneratePress site title use the same serif we use in name hero */
.main-title {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    letter-spacing: -0.01em;
}

/* Slightly warmer hyperlinks site-wide */
a {
    color: var(--site-navy);
}
a:hover {
    color: var(--site-accent);
}
