/*
Theme Name: HOB
Theme URI:
Author:
Author URI:
Description:
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hob
Tags:
*/
@import url("https://fonts.googleapis.com/css2?family=Damion&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
:root {
  --color-background: rgb(254.0508474576, 249.3050847458, 231.9491525424);
  --color-background-feature: rgb(206.6571428571, 230.1571428571, 232.8428571429);
  --color-background-box: rgb(206.5, 206.5, 206.5);
  --color-background-dark:
  --color-text: #111;
  --color-text-light: #EEE;
  --color-accent: rgb(221.8644067797, 176.186440678, 9.1355932203);
  --color-accent-text: rgb(74.9152542373, 59.4915254237, 3.0847457627);
  --color-accent-hover: rgb(221.8644067797, 176.186440678, 9.1355932203);
  --color-accent-hover-text: $midnight;
  --color-dark: rgb(33, 33, 33);
  --color-light: $FFF;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: rgb(254.0508474576, 249.3050847458, 231.9491525424);
    --color-background-feature: rgb(206.6571428571, 230.1571428571, 232.8428571429);
    --color-background-box: rgb(206.5, 206.5, 206.5);
    --color-background-dark:
      --color-text: #111;
    --color-text-light: #EEE;
    --color-accent: rgb(221.8644067797, 176.186440678, 9.1355932203);
    --color-accent-text: rgb(74.9152542373, 59.4915254237, 3.0847457627);
    --color-accent-hover: rgb(221.8644067797, 176.186440678, 9.1355932203);
    --color-accent-hover-text: $midnight;
    --color-dark: rgb(33, 33, 33);
    --color-light: $FFF;
  }
}
:root {
  --space: 0.8rem;
}

@media only screen and (min-width: 768px) {
  :root {
    --space: 1.3rem;
  }
}
.section {
  overflow-x: clip;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding: calc(var(--space) * 6) var(--space);
}

.row + .row {
  margin-top: calc(var(--space) * 4);
}

@media (max-width: 767px) {
  .column + .column {
    margin-top: calc(var(--space) * 3);
  }
}
@media (min-width: 768px) {
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: calc(var(--space) * 2) calc(var(--space) * 2);
  }
  .column {
    grid-column: span 12;
  }
  .column.medium-3 {
    grid-column: span 3;
  }
  .column.medium-4 {
    grid-column: span 4;
  }
  .column.medium-6 {
    grid-column: span 6;
  }
  .column.medium-8 {
    grid-column: span 8;
  }
  .column.medium-9 {
    grid-column: span 9;
  }
  .column > * {
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .container {
    max-width: 700px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .column.large-3 {
    grid-column: span 3;
  }
  .column.large-4 {
    grid-column: span 4;
  }
  .column.large-6 {
    grid-column: span 6;
  }
  .column.large-9 {
    grid-column: span 9;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 22px;
    line-height: 1.75;
  }
}
@supports (padding: max(0px)) {
  body, header, footer {
    padding-left: min(0vmin, env(safe-area-inset-left));
    padding-right: min(0vmin, env(safe-area-inset-right));
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

* {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "Raleway", serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 3.25em;
  line-height: 1em;
  font-family: "Damion", serif;
  margin: 0 0 calc(var(--space) * 1.5) 0;
}

h2 {
  font-size: 1.5em;
  font-family: "Raleway", serif;
  line-height: 1.2;
  margin: 0 0 calc(var(--space) / 2) 0;
}

h3 {
  font-size: 1em;
  line-height: 1.1;
  font-family: "Raleway", serif;
  margin: calc(var(--space) * 2) 0 var(--space) 0;
}

h4 {
  font-size: 1.25em;
  font-family: "Raleway", serif;
  margin-bottom: calc(var(--space) / 3) 0;
}

h5 {
  font-size: 0.8em;
  letter-spacing: 0.02em;
  font-family: "Raleway", serif;
}

h6 {
  font-size: 0.6em;
  font-family: "Raleway", serif;
}

p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: var(--space);
}

.excerpt {
  font-size: 1.2em;
  font-weight: 600;
}

.intro {
  text-align: left;
}
@media (min-width: 768px) {
  .intro {
    text-align: center;
    justify-items: center;
  }
  .intro .column {
    max-width: 75vw;
  }
}

blockquote {
  margin: calc(var(--space) * 4) 0;
}
blockquote p {
  margin-bottom: 0 !important;
}

a, a:link, a:visited {
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}
a:hover, a:active, a:link:hover, a:link:active, a:visited:hover, a:visited:active {
  cursor: pointer;
  color: var(--color-text);
  background-color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

a.button, .button, button, input[type=submit] {
  line-height: 1;
  position: relative;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  border-radius: 0;
  border: solid 2px var(--color-accent);
  color: var(--color-text);
  background: var(--color-accent);
  padding: 0.5rem 1rem;
  font-size: 0.95em;
  letter-spacing: 0.075em;
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  transition: all 0.2s ease-in-out;
}
a.button:hover, .button:hover, button:hover, input[type=submit]:hover {
  cursor: pointer;
  text-decoration: none;
  border-color: var(--color-accent-hover);
  background: var(--color-accent-hover);
  color: var(--color-accent-hover-text);
}
a.button:active, .button:active, button:active, input[type=submit]:active {
  outline: 0;
}
a.button.small, .button.small, button.small, input[type=submit].small {
  font-size: 0.9em;
  padding: 0.3rem 0.7rem;
}
a.button.standout, .button.standout, button.standout, input[type=submit].standout {
  margin-top: calc(var(--space) * 2);
  font-size: 1.2em;
}

.card-actions {
  margin-top: var(--space);
  text-align: right;
}
.card-actions a + a {
  margin: 0 0 0 calc(var(--space) / 2);
}
.card-actions .button {
  font-size: 0.8em;
  background: transparent;
}

input[type=submit] {
  padding: 0.75rem 1.23rem;
}

fieldset {
  margin: calc(var(--space) * 2) 0;
  border: none;
  border-top: solid 1px var(--color-accent);
  padding-top: 1rem;
}
fieldset .checkboxes {
  text-align: left;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: var(--space);
       column-gap: var(--space);
}
fieldset .checkboxes label {
  display: block;
}
fieldset .checkboxes label:not(:last-child) {
  margin-bottom: 1rem;
}
fieldset legend {
  font-size: 1em;
  margin-bottom: 0;
  font-weight: 600;
  padding-right: 1rem;
}

input[type=text], input[type=email], textarea {
  background: rgba(0, 0, 0, 0.05);
  padding: 10px 12px;
  border: none;
  width: 100%;
  transition: all 0.3s ease-in-out;
  color: var(--color-text);
  box-sizing: border-box;
  font-size: 1rem;
}
input[type=text]:hover, input[type=text]:focus, input[type=email]:hover, input[type=email]:focus, textarea:hover, textarea:focus {
  background: var(--color-accent);
  outline: none;
}
@media (prefers-color-scheme: dark) {
  input[type=text], input[type=email], textarea {
    background: rgba(255, 255, 255, 0.1);
  }
  input[type=text]:hover, input[type=text]:focus, input[type=email]:hover, input[type=email]:focus, textarea:hover, textarea:focus {
    color: var(--color-dark);
  }
}
input[type=text]:not(:last-child), input[type=email]:not(:last-child), textarea:not(:last-child) {
  margin-bottom: calc(var(--space) / 2);
}

textarea {
  min-height: 1rem;
  transition: all 0.6s ease-in-out;
  resize: none;
}
textarea:not(:-moz-placeholder) {
  min-height: 10rem;
}
textarea:focus, textarea:not(:placeholder-shown) {
  min-height: 10rem;
}

input[type=checkbox] {
  margin-right: 5px;
}

table td {
  padding: 0.1em 0.2em;
}
table td + td {
  border-left: solid var(--space) transparent;
}

ol, ul {
  list-style-position: inside;
}

#content {
  position: relative;
  overflow-x: hidden;
}

article {
  background: #FFF;
}
article.container {
  padding: calc(var(--space) * 2);
}
article .article-header p.excerpt {
  font-size: 1.2em;
  font-weight: 600;
}
article .article-header .article-header-image {
  background-position: center;
  background-size: cover;
  min-height: 12rem;
}
article .article-header h2 {
  margin-bottom: 1rem;
  font-size: 1.6em;
}
article .card {
  margin: calc(var(--space) * 2) 0;
}
@media (min-width: 768px) {
  article .card {
    margin: calc(var(--space) * 2);
  }
}
@media (min-width: 1200px) {
  article .card {
    margin: calc(var(--space) * 2) calc(var(--space) * 4);
  }
}
article h2 {
  margin-top: calc(var(--space) * 4);
}
article h3 {
  margin-top: calc(var(--space) * 2);
}
article h2 + h3 {
  margin-top: calc(var(--space) * 2);
}
article h4 {
  margin-top: calc(var(--space) * 2);
}
article a.button {
  display: table;
}
article .text-columns {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-width: 300px;
       column-width: 300px;
}

.card {
  position: relative;
  text-align: left;
  line-height: 1.2;
  color: var(--color-text);
  background: #FFF;
  padding: var(--space);
  z-index: 1;
}
.card a:not(.button) {
  border: none;
}
.card h3 {
  margin: 0 0 var(--space) 0;
}
.card p {
  font-size: 0.9em;
}

.event.card h3 {
  font-size: 1.15em;
}
.event.card h4 {
  font-size: 0.8em;
  font-weight: 400;
  margin: 0.5rem 0 0 0;
}
.event.card p {
  margin: 1rem 0 0 0;
  display: inline-block;
}

.placeholder {
  background: var(--color-accent);
}

#notice-bar {
  padding: var(--space);
  text-align: center;
  background: var(--color-accent);
  color: var(--color-accent-text);
}
#notice-bar span {
  font-size: 1.2em;
  font-weight: 900;
  display: block;
}

header#masthead {
  text-align: center;
  background-color: #FFF;
}
header#masthead img {
  height: 75px;
  width: auto;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  header#masthead img {
    height: 80px;
  }
}
header#masthead img + img {
  margin-left: var(--space);
}
header#masthead.masthead-front-page {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  header#masthead.masthead-front-page img {
    height: 150px;
  }
}
header#masthead a:hover {
  border: none;
  background: transparent;
}
header .container {
  padding: 0;
}
header .row {
  align-items: center;
  grid-gap: 0;
  padding: var(--space);
}
header ul {
  margin: 0;
  padding: 0;
}
header nav {
  white-space: nowrap;
}
header nav button {
  margin: 0;
}
header nav ul {
  list-style-type: none;
}
header nav ul li {
  display: inline-block;
}
header a, header a:link {
  border: none;
  line-height: 1 !important;
}

div:has(.decoration) {
  position: relative;
}

.decoration {
  position: absolute;
  z-index: 0;
}
.decoration.eighths {
  rotate: 180deg;
  top: 50px;
  left: 30%;
}
@media (min-width: 1200px) {
  .decoration.eighths {
    top: -970px;
    left: 25%;
  }
}
.decoration.eighths .shape {
  fill: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .decoration.eighths .shape {
    height: auto;
    width: 1000px;
  }
}
@media (min-width: 1200px) {
  .decoration.eighths .shape {
    width: 1200px;
  }
}
.decoration.eighth {
  rotate: 20deg;
  top: -810px;
  left: 30%;
}
@media (min-width: 1200px) {
  .decoration.eighth {
    top: -970px;
    left: 25%;
  }
}
.decoration.eighth .shape {
  fill: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .decoration.eighth .shape {
    height: auto;
    width: 1000px;
  }
}
@media (min-width: 1200px) {
  .decoration.eighth .shape {
    width: 1200px;
  }
}
.decoration .blob {
  fill: #428890;
  rotate: 10deg;
  position: absolute;
  z-index: 0;
  right: -60px;
  top: 0;
  height: 0;
}
@media (min-width: 768px) {
  .decoration .blob {
    height: 250px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .decoration .blob {
    height: 300px;
  }
}

#announcements {
  padding: calc(var(--space) * 2);
  background: #f8d555;
  margin-top: calc(var(--space) * 2);
  margin-bottom: calc(var(--space) * 2);
}

#introduction {
  position: relative;
}
#introduction .container {
  padding-top: 0;
}
#introduction img {
  width: 100%;
  height: auto;
}
#introduction .first {
  position: relative;
  z-index: 1;
  margin-bottom: calc(var(--space) * 6);
}
#introduction p {
  font-size: 1.25em;
}
@media (min-width: 768px) {
  #introduction p.excerpt {
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.04);
    width: 400px;
    position: absolute;
    top: var(--space);
    left: calc(var(--space) * -1);
  }
}
@media (min-width: 1200px) {
  #introduction p.excerpt {
    top: calc(var(--space) * 3);
    left: calc(var(--space) * -3);
  }
}
#introduction .card {
  background: var(--color-background-feature);
}

.directors img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-top: -25%;
}
.directors .card {
  background-color: var(--color-background);
}

#about {
  background: var(--color-background-feature);
}

#bandcamp {
  background-color: var(--color-background-feature);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  #bandcamp .container {
    background: rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 768px) {
  #bandcamp .container {
    max-width: 550px;
  }
}
#bandcamp h1, #bandcamp p {
  color: var(--color-text-light);
}
#bandcamp .intro {
  padding: var(--space);
}

#getinvolved {
  background: var(--color-background-feature);
}

footer {
  text-align: center;
}
footer h1 span {
  display: block;
  font-size: 0.5em;
  font-style: italic;
  margin-top: 1rem;
}
footer .links {
  margin: 6rem 0;
  grid-template-columns: 100px 100px;
  justify-content: center;
}
footer .links a:link, footer .links a:visited {
  color: var(--color-light);
  font-size: 1.5em;
}
footer .links a:link:hover, footer .links a:visited:hover {
  color: var(--color-light);
}
footer a, footer a:link, footer a:visited, footer a:active {
  color: var(--color-light);
}/*# sourceMappingURL=style.css.map */