/* ----------------------------------------------------------------------------
main.less
LESS Styles for Judah1
---------------------------------------------------------------------------- */
:root {
  /*
    Olive
        #849324
        oklch(0.6306 0.1319 117.15)

    Steel Blue
        #457AB7
        oklch(0.5707 0.1106 253.21)
        
    Oxford Navy
        #1B355D
        oklch(0.3306 0.078 258.77)

    Intense Cherry
        #AD343E
        oklch(0.5082 0.1565 20.19)
        
    Sunflower Gold
        #F2AF29
        oklch(0.7972 0.1556 78.83)


*/
  --color-Olive: 0.6306 0.1319 117.15;
  --color-SteelBlue: 0.5707 0.1106 253.21;
  --color-OxfordNavy: 0.3306 0.078 258.77;
  --color-IntenseCherry: 0.5082 0.1565 20.19;
  --color-SunflowerGold: 0.7972 0.1556 78.83;
}
/* Slightly roomier hero on large screens */
@media (min-width: 992px) {
  .py-lg-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
html {
  overflow-y: scroll;
}
/* === base/_typography.less === */
body.j1-main {
  font-family: "Merriweather", serif;
}
body.j1-main .h1,
body.j1-main .h2,
body.j1-main .h3,
body.j1-main .h4,
body.j1-main .h5,
body.j1-main .h6,
body.j1-main h1,
body.j1-main h2,
body.j1-main h3,
body.j1-main h4,
body.j1-main h5,
body.j1-main h6 {
  font-family: "Montserrat", sans-serif;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
/*
h1 {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 700;
    margin-block: var(--space-4) var(--space-2);
}

h2 {
    font-size: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
    font-weight: 650;
    margin-block: var(--space-4) var(--space-2);
}

h3 {
    font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
    font-weight: 600;
    margin-block: var(--space-3) var(--space-2);
}

p {
    font-size: 1rem;
    margin-block: 0 var(--space-3);
    color: var(--color-text);
}

small {
    color: var(--color-text-muted);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code, pre {
    font-family: var(--font-mono);
}

*/
/* === layout/_header.less === */
header.j1 {
  font-family: "Montserrat", sans-serif;
}
/*
header.site-header {
    background: var(--color-primary);
    color: white;
    padding-block: var(--space-3);
}

header.site-header .inner {
    .container();
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}
*/
body.j1-dev header .navbar {
  background: blue !important;
}
body.j1-stg header .navbar {
  background: orangered !important;
}
body.j1-adm header .navbar {
  background: red !important;
}
/* === layout/_footer.less === */
footer.j1 {
  font-family: "Montserrat", sans-serif;
}
/*
footer.site-footer {
    background: color-mix(in oklab, var(--color-primary) 15%, var(--color-surface));
    color: var(--color-text);
    padding-block: var(--space-6);
    border-top: 1px solid var(--color-border);
    text-align: center;
}
*/
:target {
  scroll-margin-top: 72px;
}
html {
  height: 100%;
}
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
  font-size: 1.1rem;
}
main h1:first-of-type {
  margin-top: 0;
}
footer {
  flex-shrink: 0;
}
blockquote {
  padding-left: 5rem;
  padding-right: 5rem;
}
blockquote .blockquote-footer {
  margin-top: -0.25rem !important;
}
.nav-scroll {
  overflow-x: auto;
  white-space: nowrap;
}
.j1-imgmodal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  cursor: zoom-out;
}
.j1-imgmodal.is-open {
  display: flex;
}
.j1-imgmodal img {
  max-width: min(100%, 1000px);
  max-height: 90vh;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
  /* so click closes even on the image */
}
/* Prevent native image dragging/selection in sortable tables */
.j1-thumb {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.accordion .accordion-header {
  margin-top: 0;
}
.accordion .accordion-button {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bs-accordion-btn-color);
  background: #f0f0f0;
  outline: none;
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-btn-color);
  background: #c0c0c0;
}
.accordion .accordion-collapse {
  font-size: 1rem;
}
.accordion .accordion-body {
  background-color: #e0e0e0;
}
/* === components/_buttons.less === */
.btn {
  font-family: "Montserrat", sans-serif;
}
/* === components/_cards.less === */
.card .card-body {
  font-family: "Montserrat", sans-serif;
}
.card .card-title {
  font-weight: 600;
}
.card .card-text {
  font-size: 85%;
}
.j1-gold-card {
  background: linear-gradient(180deg, oklch(var(--color-SunflowerGold) / 0.5) 0%, oklch(var(--color-SunflowerGold) / 0.25) 100%);
}
.j1-green-card {
  background: linear-gradient(180deg, oklch(var(--color-Olive) / 0.3) 0%, oklch(var(--color-Olive) / 0.1) 100%);
}
.j1-lblue-card {
  background: linear-gradient(180deg, oklch(var(--color-SteelBlue) / 0.3) 0%, oklch(var(--color-SteelBlue) / 0.1) 100%);
}
.j1-dblue-card {
  background: linear-gradient(180deg, oklch(var(--color-OxfordNavy) / 0.3) 0%, oklch(var(--color-OxfordNavy) / 0.1) 100%);
}
.j1-cherry-card {
  background: linear-gradient(180deg, oklch(var(--color-IntenseCherry) / 0.3) 0%, oklch(var(--color-IntenseCherry) / 0.1) 100%);
}
.j1-action-cards {
  margin-top: 3rem !important;
  margin-bttom: 3rem !important;
}
.j1-action-cards .card {
  background: linear-gradient(180deg, oklch(var(--color-SunflowerGold) / 0.3) 0%, oklch(var(--color-SunflowerGold) / 0.1) 100%);
}
.j1-form {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
  /* Changed-field indicator: subtle but obvious */
}
.j1-form .form-label {
  margin-bottom: 0 !important;
  font-size: 70%;
  padding-left: 0.5rem;
  color: grey;
}
.j1-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #000;
  background: oklch(var(--color-SunflowerGold) / 0.25);
}
.j1-form .j1-changed {
  border-color: var(--bs-warning) !important;
  background-color: rgba(var(--bs-warning-rgb), 0.07);
}
.j1-form .j1-form-bg {
  background: #EEE;
}
/* ----------------------------------------------------------------------------
_gallery.less
LESS Styles for Image Galleries
---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
Image Grid
---------------------------------------------------------------------------- */
.j1-image-grid {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Center the last row */
  gap: 1rem;
}
.j1-image-grid img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  flex: 0 0 160px;
  /* base width = 160px */
}
/* ----------------------------------------------------------------------------
Image Carousel
---------------------------------------------------------------------------- */
.j1-image-carousel {
  margin: 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-height: 200px;
}
.j1-image-carousel img {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
}
.j1-image-carousel img.j1-active {
  display: block;
}
.j1-carousel-nav:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.j1-carousel-nav--prev {
  left: 0.5rem;
}
.j1-carousel-nav--next {
  right: 0.5rem;
}
/* ----------------------------------------------------------------------------
Image Masonry
---------------------------------------------------------------------------- */
.j1-image-masonry {
  margin: 0;
  column-count: 3;
  column-gap: 1rem;
}
.j1-image-masonry img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 1rem;
  break-inside: avoid;
}
@media (max-width: 992px) {
  .j-_image-masonry {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .j1-image-masonry {
    column-count: 1;
  }
}
/* ----------------------------------------------------------------------------
---------------------------------------------------------------------------- */
.j1-hero-image {
  margin-bottom: 1.25rem;
}
.j1-hero-image .j1-hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.j1-hero-image picture,
.j1-hero-image img {
  display: block;
  width: 100%;
}
/* optional fixed hero height */
.j1-hero-image img {
  height: auto;
}
/* gradient overlay */
.j1-hero-image .j1-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
/* title positioning */
.j1-hero-image .j1-hero-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12%;
  transform: translateY(-33%);
  text-align: center;
  padding: 0 1rem;
  color: #fff;
  z-index: 2;
}
.j1-hero-image .j1-hero-h1 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 3rem);
}
.j1-strip {
  height: 160px;
}
.j1-strip .j1-strip-img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}
.j1-strip .j1-strip-text {
  background: linear-gradient(90deg, oklch(var(--color-SunflowerGold) / 0.5) 0%, oklch(var(--color-SunflowerGold) / 0.35) 100%);
}
.j1-staff h2 {
  font-weight: 600;
  margin-top: 0;
}
.j1-staff .staff-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.j1-staff .staff-photo {
  border: 1px solid #A8A8A8;
  padding: 15px;
}
article.j1-knowledgebase h2 {
  color: oklch(var(--color-OxfordNavy));
  margin-bottom: 0.5rem;
}
article.j1-knowledgebase h3 {
  margin-bottom: 0.5rem;
}
article.j1-knowledgebase h4 {
  margin-bottom: 0.5rem;
}
/*-----------------------------------------------------------------------------
Bootstrap adds padding-right when a modal opens (scrollbar compensation).
Even if you force a scrollbar, Bootstrap may still add padding.
Override it to prevent the page shift.
-----------------------------------------------------------------------------*/
body.modal-open {
  padding-right: 0 !important;
}
/*-----------------------------------------------------------------------------
Bootstrap Theme Overrides
Driven by OKLCH color tokens
-----------------------------------------------------------------------------*/
:root {
  /* Core Bootstrap theme colors */
  --bs-primary: oklch(var(--color-OxfordNavy));
  --bs-secondary: oklch(var(--color-SteelBlue));
  --bs-success: oklch(var(--color-Olive));
  --bs-warning: oklch(var(--color-SunflowerGold));
  --bs-danger: oklch(var(--color-IntenseCherry));
  --bs-info: oklch(var(--color-SteelBlue));
  /* Optional but recommended RGB companions */
  /* Improves focus rings, shadows, alpha blends */
  --bs-primary-rgb: 27, 53, 93;
  --bs-secondary-rgb: 69, 122, 183;
  --bs-success-rgb: 132, 147, 36;
  --bs-warning-rgb: 242, 175, 41;
  --bs-danger-rgb: 173, 52, 62;
  --bs-info-rgb: 69, 122, 183;
}
/* Ensure the caption area itself is allowed to show content */
/*
.pswp__caption {
    .font-montserrat();
    display: block;
    opacity: 1;
    color: #fff;
}
*/
/* Make the image wrap the positioning context for overlays */
.pswp__img-wrap {
  position: relative;
}
/* Remove the bar layout constraints so absolute positioning works */
.pswp__top-bar {
  position: absolute !important;
  left: 0;
  right: 0;
  top: 0;
  background: none !important;
  pointer-events: none;
}
/* Re-enable clicks on actual buttons */
.pswp__top-bar .pswp__button,
.pswp__top-bar .pswp__counter {
  pointer-events: auto;
}
/* Force these to behave as overlays (PhotoSwipe has strong defaults) */
.pswp__button--close {
  position: absolute !important;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  backdrop-filter: blur(4px);
}
.pswp__counter {
  position: absolute !important;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}
.pswp__custom-caption {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.3;
  pointer-events: none;
  /* don't block swipe/click */
  z-index: 20;
}
.pswp--zoomed-in .pswp__custom-caption {
  opacity: 0.85;
}
@media (max-width: 576px) {
  .pswp__custom-caption {
    font-size: 0.85rem;
    padding: 0.6rem 0.75rem;
  }
}
/* ----------------------------------------------------------------------------
---------------------------------------------------------------------------- */
/*# sourceMappingURL=main.css.map */
/* Build: 2026-01-18 08:15:36  Commit: a20e9e4 */
