@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");
/*!
 * Blueprint Theme — Core SCSS
 *
 * WordPress core overrides and base typography.
 * Block styling is done via Tailwind utility classes in template.php.
 *
 * Compile:
 *   sass assets/scss/blueprint.scss assets/css/theme.css
 */
:root {
  --color-1: #01313d;
  --color-2: #fcf6f1;
  --color-3: #d1efee;
  --color-4: #e6f972;
  --color-5: #ffffff;
  --color-6: #ffffff;
  --color-7: #ffffff;
  --color-8: #ffffff;
  --color-9: #ffffff;
  --color-10: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #01313d;
  margin: 0 0 1.25rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, calc(4vw + 1rem), 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, calc(3vw + 0.75rem), 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, calc(2vw + 0.5rem), 1.75rem);
}

.wp-block {
  margin-bottom: 2rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 200px;
  padding: 12px 20px;
  border-radius: 40px;
  border: 2px solid #01313d;
  background-color: #01313d;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover, .btn:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
  background-color: transparent;
  color: #01313d;
}

.btn-secondary {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background-color: #ffffff;
  color: #01313d;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #01313d;
}
.is-style-outline .wp-block-button__link:hover, .is-style-outline .wp-block-button__link:focus-visible {
  background-color: #01313d;
  color: #ffffff;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-item {
  flex: 1 1 auto;
}

.gallery-icon img {
  border-radius: 0.5rem;
}

.gallery-caption {
  font-size: 0.875rem;
  color: #fcf6f1;
  margin-top: 0.5rem;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-body {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e6f972;
}

.comment-meta {
  font-size: 0.875rem;
  color: #fcf6f1;
  margin-bottom: 0.5rem;
}

.comment-content {
  line-height: 1.75;
}

.wp-block-embed iframe,
.wp-block-video video {
  max-width: 100%;
  height: auto;
}

.accordion-trigger[aria-expanded=true] .accordion-icon {
  transform: rotate(180deg);
}

@media print {
  .site-header,
.site-footer,
.menu-toggle {
    display: none;
  }
}
/*!
 * Blueprint Theme — Entry Point
 *
 * Compile:
 *   sass assets/scss/blueprint.scss assets/css/theme.css
 */