/* ======================================================
   Google Fonts
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* ======================================================
   Base Styles
====================================================== */
html, body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #222;
  -webkit-font-smoothing: antialiased; /* Chrome & Safari */
  -moz-osx-font-smoothing: grayscale;  /* Firefox on macOS */
}

strong {
  font-weight: 700;
}

/* ======================================================
   Links
====================================================== */
a {
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.1em;
}

/* ======================================================
   Global Container for Layout Consistency
====================================================== */

/* Responsive site-wide container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;

  /* Smooth, responsive padding (horizontal + vertical) */
  padding: 0rem clamp(0.75rem, 4vw, 8rem);

  /* Optional: limit container width for very large screens */
  max-width: 1920px;
}

/* ======================================================
   Focus Styles (Accessibility)
====================================================== */
:where(.wp-site-blocks *:focus) {
  outline-width: 2px;
  outline-style: solid;
}

/* ======================================================
   Navigation Menu Enhancements
====================================================== */
/* Bottom margin on submenu items for focus visibility */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
  margin-bottom: 3px;
}

/* Outline offset on parent menu items */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  outline-offset: 4px;
}

/* Remove outline offset on submenu items */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  outline-offset: 0;
}

/* ======================================================
   Typography Enhancements
====================================================== */
/* Reduce widows/orphans with pretty wrapping */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
  text-wrap: pretty;
}

/* Make more-link block level on front page */
.more-link {
  display: block;
}

/* Utility class for justified text */
.justify {
  text-align: justify;
}

/* ======================================================
   Responsive Helpers / Optional Utilities
====================================================== */

/* Ensure all images scale with container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
