:root {
  --red: #a10007;
  --gray: #1a1a1a;
  --light: #c4c2c2;
  --lighter: #e8e8e8;

  --mobile-min: 360px;
  --mobile-max: 414px;
  --tablet-min: 768px;
  --tablet-max: 1024px;
  --desktop-min: 1024px;
  --desktop-max: 1920px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--gray);
  font-family: 'Montserrat', 'Helvetica Neue', 'Arial Nova', sans-serif;
  opacity: 0; /* turns to 1 when page is ready --- see utils.js */
  transition: opacity 1s;
  animation-delay: 1.5s;
}

.body-bg {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -10;
  width: 100vw;
  height: 100vh;
  background: url('/images/placeholder.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
}

.body-bg2 {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -10;
  width: 100vw;
  height: 100vh;
  background-image: url(/images/ripples.svg),
      linear-gradient(0deg, rgba(54,3,0,1) 0%, rgba(147,21,12,1) 31%, rgba(191,134,102,1) 75%, rgba(158,115,62,1) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

h1 {
  font-size: 32px;
  border-bottom: 3px solid var(--lighter);
  padding-bottom: 14px;
  display: inline-block;
}

h3 {
  font-weight: normal;
}


#main-menu-logo{
  mix-blend-mode: exclusion ;
  
}


/* ~ . _ . ~ * ~ . _ . ~ * ~ . _ . ~ * BUTTONS * ~ . _ . ~ * ~ . _ . ~ */

.button-dark,
.button-light,
.button-lighter {
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  font-size: min(22px, 2.2vw);
  font-weight: bold;
  padding: 10px 42px;
  transition: 0.25s all;
}

.button-lighter  {
  color: var(--light);
  border: min(4px, 0.5vw) solid var(--light);
}

.button-lighter:hover  {
  color: #fff;
  background: #000;
  border: min(4px, 0.5vw) solid #000;
}

.button-light {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: min(4px, 0.5vw) solid #fff;
}

.button-light:hover {
  color: #000;
  background-color: #fff;
}

.button-dark {
  color: #fff;
  background-color: var(--gray);
  border: min(4px, 0.5vw) solid #fff;
}

.button-dark:hover {
  color: var(--gray);
  background-color: #fff;
  border: min(4px, 0.5vw) solid var(--gray);
}

.center-pad {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ~ . _ . ~ * ~ . _ . ~ * ~ . _ . ~ * PIZZAZZ  * ~ . _ . ~ * ~ . _ . ~ */

.pizzazz {
  transition-property: all;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.fade-in {
  opacity: 0;
}

.fade-in.trigger {
  opacity: 1;
}

.slide-up {
  transform: translateY(20px);
}

.slide-up.trigger {
  transform: translateY(0px);
}

/* ~ . _ . ~ * ~ . _ . ~ * ~ . _ . ~ * SUB MENU  * ~ . _ . ~ * ~ . _ . ~ */

.sub-menu {
  display: flex;
  width: var(--desktop-min);
  position: relative;
  z-index: 10;
  left: -40px;
}

.sub-menu > a {
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: min(18px, 2.4vw);
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: var(--menu-border-size) solid #fff;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.25s all;
}

.sub-menu > a:hover,
.sub-menu > a.selected {
  background-color: rgba(255, 255, 255, 1);
  color: #000;
}

/* ~ . _ . ~ * ~ . _ . ~ * ~ . _ . ~ * GRIDS * ~ . _ . ~ * ~ . _ . ~ */

.simple-flex {
  display: flex;
}

.simple-flex > *:first-child {
  margin-right: 50px;
}

@media (max-width: 1024px) { /* ideally matches --desktop-min in styles.css */
  .simple-flex {
    flex-direction: column;
  }

  .simple-flex > *:first-child {
    margin-right: 0;
  }
}

.masonry-grid {
  display: grid;
  /* grid-gap: 2px; */
  grid-template-columns: repeat(auto-fill, minmax(33vw, 1fr)); /* Make columns adjust according to the available viewport */
  grid-auto-rows: 33vw; /* Set the height for implicitly-created row track */
  border: 1px solid #fff;
  background: var(--gray);
}

/* ...TBD
.mi-1 {
   grid-row-end: span 1.25;
}

.mi-2 {
   grid-row-end: span 1.75;
}

.mi-3 {
   grid-row-end: span 2;
}
*/

.supporter-area {
  text-align: center;
}

.supporter-logo {
  width: 28%;
  display: inline-block;
  margin: 6% 2%;
}

.supporter-description {
  padding: 20px;
}

/* ~ . _ . ~ * ~ . _ . ~ * ~ . _ . ~ * FOOTER * ~ . _ . ~ * ~ . _ . ~ */

#footer-wrapper {
  background: url(/images/ripples.svg) no-repeat center center;
  background-size: cover;
  background-color: var(--red);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--desktop-min);
  margin: 0 auto;
  padding: 100px 0px;
  color: #fff;
}

footer > div:nth-child(1) img {
  width: 12vw;
  max-width: 200px;
}

footer > div:nth-child(2) {
  text-align: center;
}

footer > div:nth-child(2) > * {
  margin: 0.3em auto;
}

footer h3 {
  font-weight: bold;
}

footer > div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer > div:nth-child(3) img {
  width: 4vw;
  margin: 12px;
  max-width: 50px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

#below-footer {
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  font-size: 12px;
}

#below-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) { /* ideally matches --desktop-min in styles.css */
  footer {
    flex-direction: column;
  }

  footer > div:nth-child(1) {
    display: none;
  }
}
