/*
Theme Name: BFA Custom Theme
Theme URI: http://example.com
Author: Your Name
Description: Custom code-first theme for BFA
Version: 1.0
Text Domain: bfa-custom-theme
*/

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ===== Global Horizontal Scroll Fix ===== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  /* Original: background: #001f3f — changed to white so light sections
     don't show dark navy bleeding through transparent areas */
  background: #ffffff;
  color: black;
  scroll-behavior: smooth;
}

/* ===== Images — prevent * reset from collapsing them ===== */
img {
  max-width: 100%;
  /* Do NOT set height: auto here — let section CSS control heights */
  display: block;
}

/* ===== WP Block Groups — prevent Gutenberg padding from
   overriding section layouts ===== */
.wp-block-group.alignfull {
  max-width: 100% !important;
}

/* ===== List resets — ensure nav menus use list-style
   but card/feature lists can override ===== */
nav ul,
nav ol {
  list-style: none;
}