/*
Theme Name: Faith Baptist Church Visalia
Theme URI: https://fbcvisalia.org/
Author: Faith Baptist Church
Author URI: https://fbcvisalia.org/
Description: Custom WordPress theme for Faith Baptist Church, Visalia, CA. A faithful conversion of the church's hand-built static site — expository, Scripture-centered design using Barlow Condensed and Crimson Pro with a terracotta-and-stone palette. Ships with dedicated templates for Home, About, Beliefs, Ministries, Staff, Media, and Visit.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fbc-visalia
*/

/*
  NOTE ON STYLES
  --------------
  Each page's full visual styling lives in its own file under /css/
  (home.css, about.css, beliefs.css, ministries.css, staff.css, media.css, visit.css)
  and is enqueued conditionally by functions.php for the matching page.

  Those per-page files each contain the complete style block from the original
  design — including the shared header/footer/button styles — so every page
  renders exactly as designed. This file (style.css) only carries the theme
  header above, which WordPress requires, plus a couple of safe global helpers.
*/

html { scroll-behavior: smooth; }

/* Mobile nav open-state (the original markup had a Menu button but no working
   toggle; the theme wires it up in /js/nav.js and styles the open state here). */
@media (max-width: 600px) {
  .site-nav.is-open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white, #faf8f5);
    border-bottom: 1px solid var(--stone1, #e8e0d4);
    padding: 0.5rem 2.5rem 1.25rem;
    gap: 0;
    z-index: 200;
  }
  .site-nav.is-open a { padding: 0.65rem 0; }
}
