@import "theme_colors_and_fonts.css";
/* * * * * * * * * * 
/* SCSS VARIABLES  */
/* ~~~~~~~~~~~~~~~~*/
:root {
  --maxwidth: 50rem;
}
/* Mixins */
/* ~~~~~~~~~~~~~~~~*/
/* END VARIABLES   *
 * * * * * * * * * */
/* * * * * * * * * * 
 * GLOBAL          */
/* ~~~~~~~~~~~~~~~~*/
body {
  font-family: var(--sans);
  background-image: url(assets/images/bubbles.jpg);
  background-color: color-mix(in srgb, var(--gray) 50%, transparent 50%);
  background-blend-mode: lighten;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  color: transparent;
}
/* Header */
#masthead, .entry-header, .page-title, .site-title {
  display: none;
}
.pull-up {
  margin-top: -150px;
}
#colophon {
  background: var(--mint);
  border-top: 2px solid #000;
  font-weight: 900;
  padding: 0;
  text-align: center;
  width: 100%;
}
#colophon p {
  margin-top: 0;
  margin-bottom: 0;
}
/* ~~~~~~~~~~~~~~~~*/
/* END GLOBAL      *
 * * * * * * * * * */
/* * * * * * * * * * 
 * TYPOGRAPHY      */
/* ~~~~~~~~~~~~~~~~*/
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.3;
}
h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}
h2 {
  margin-bottom: 0;
  margin-top: 0;
}
h2 + p {
  margin-top: 0 !important;
  margin-block-start: 0;
}
p {
  font-size: 1.2rem;
}
/* ~~~~~~~~~~~~~~~~~~*/
/* END TYPOGRAPHY    *
 * * * * * * * * * * */
/* * * * * * * * * * *
 * BLOCK STYLES      */
/* ~~~~~~~~~~~~~~~~~~*/
/* Buttons */
.is-style-fill .wp-block-button__link {
  border-radius: 0;
  padding: 1rem 2rem;
  text-transform: uppercase;
}
/* Columns */
.is-style-container {
  max-width: var(--maxwidth);
  margin: 0 auto;
  padding: var(--wp--preset--spacing--normal);
}
.is-style-no-gap {
  gap: 0;
}
.wp-block-columns {
  margin-bottom: 0;
}
.wp-block-column.has-yellow-background-color {
  border-radius: 11px;
  border: 2px solid #000;
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.12);
  padding: var(--wp--preset--spacing--normal);
  max-width: 80vw;
  margin: 0 auto;
}
iframe {
  border-radius: 11px;
  border: 2px solid #000;
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.12);
  aspect-ratio: 0.5625;
  width: 100%;
  height: auto;
}
.wp-block-gallery {
  display: grid !important;
  grid-template-columns: 30% 40% 30%;
  grid-template-rows: auto auto;
  grid-auto-flow: dense;
  gap: 1rem !important;
  padding: var(--wp--preset--spacing--normal);
  max-width: 100%;
}
.wp-block-gallery > figure {
  grid-column: span 1;
}
.wp-block-gallery > figure, .wp-block-gallery > figure img {
  width: 100% !important;
}
.wp-block-gallery > figure:first-child {
  grid-row: span 2;
}
.wp-block-gallery > figure:nth-child(2) {
  transform: translate(-50px, -50px);
}
.wp-block-gallery > figure:nth-child(3) {
  transform: translate(-80px, 20px);
}
.wp-block-gallery > figure:nth-child(3) > img {
  width: 110% !important;
  max-width: 110% !important;
}
.wp-block-gallery > figure:nth-child(4) {
  transform: translate(0, -100px);
}
.wp-block-gallery > figure:nth-child(5) {
  transform: translate(0, -50px);
}
/* ~~~~~~~~~~~~~~~~~~*/
/* END BLOCK STYLES  *
 * * * * * * * * * * */
.entry-content > *:not(.alignfull) {
  max-width: var(--maxwidth);
  margin-left: auto;
  margin-right: auto;
}
/* * * * * * * * * * *
 * MEDIA QUERIES     */
/* ~~~~~~~~~~~~~~~~~~*/
@media screen and (max-width: 800px) {
  .wp-block-gallery {
    display: flex !important;
    max-width: 80vw !important;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-block-gallery > figure {
    width: 100%;
  }
  .wp-block-gallery > figure img {
    width: 100%;
  }
  .wp-block-gallery > figure:nth-child(3), .wp-block-gallery > figure:nth-child(4), .wp-block-gallery > figure:nth-child(5) {
    display: none !important;
  }
}
@media screen and (max-width: 50rem) {
  #masthead:has(.toggled) {
    padding-bottom: 10rem;
  }
  #masthead:has(.toggled) > .is-style-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
  }
  #masthead .is-style-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #masthead .main-navigation #primary-menu {
    position: fixed;
    width: 100vw;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    left: 0;
    right: 0;
    margin-top: var(--wp--preset--spacing--normal);
    flex-direction: column;
  }
  #masthead .main-navigation #primary-menu li.menu-item-has-children > .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    grid-column: 1/4;
    grid-row: 2/3;
  }
  #masthead .main-navigation.toggled #primary-menu {
    transform: translateX(0%);
    padding: var(--wp--preset--spacing--normal);
    background: #fff;
    box-shadow: -2px 0px 6px rgba(0, 0, 0, 0.2);
  }
  #masthead .menu-toggle {
    border-radius: 0;
    padding: 1rem 2rem;
    text-transform: uppercase;
    margin-right: 0;
    margin-left: auto;
  }
}
/* ~~~~~~~~~~~~~~~~~~*/
/* END MEDIA QUERIES *
 * * * * * * * * * * */
