:root {
  --white: #fff;
  --black: #41312f;
  --grey: #a79186;

  --primary-bg: #151515;
  --primary-link: #e67701;
  --primary-hover: #ffffff;
  --primary-font-family: "Helvetica";
  --secondary-font-family: monospace,monospace;

  --header-bg: #fff;
  --header-link: #000;
  --header-link-hover: #e67701;

  --footer-bg: #151515;
  --footer-link: #e67701;
  --footer-link-hover: #ff9e36;

  --button-bg: #e67701;
  --button-hover: #ff9e36;
}

/* Selection colours (easy to forget) */
::selection {
    background: var(--black);
    color: #fff;
}

::-moz-selection {
    background: var(--black);
    color #fff;
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--primary-bg);
    background-position: center center;
    background-size: cover;
    font-family: "Helvetica", sans-serif;

}
body.menu-open {
    overflow-y: hidden;
}

a {
    color: var(--primary-link);
}
a:hover {
    color: var(--primary-hover);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font-family), sans-serif;
    font-weight: 900;
}
p {
    font-family:sans-serif;
}
#content, #wrapper {
    overflow-x: hidden;
}
.offset-top {
    position: relative;
    top: -100px;
    margin-bottom: -100px;
    z-index: 201;
}
/* SMALL */
@media screen and (max-width: 39.9375em) {
    #content {
       padding-top: 64px;
    }
}
hr.slim {
    width: 60%;
    margin: 0 auto;
}

/* HEADER */
header.navigation-container {
    background-color: var(--header-bg);
    position: relative;
    /*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transform: translateY(-200%);
    transition: transform 0.3s ease;*/
}
header.navigation-container.visible {
    transform: translateY(0);
}
header.navigation-container .row {
    display: flex;
    align-items: stretch;
}
header.navigation-container .menu-container {
    display: flex; /* Set the display property to flex */
    flex-direction: row; /* Arrange items horizontally */
    justify-content: flex-start; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    padding: 0; /* Remove default padding */
    list-style-type: none; /* Remove default list styling */
    height: 100%;
}
header.navigation-container .menu-container.menu-container-right {
    justify-content:  flex-end;
}
header.navigation-container .menu-container ul {
    display: flex; /* Set the display property to flex */
    flex-direction: row; /* Arrange items horizontally */
    justify-content: flex-start; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    padding: 0; /* Remove default padding */
    list-style-type: none; /* Remove default list styling */
    height: 100%;
}
header.navigation-container .menu-container .menu-list-right {
    align-self: flex-end;
}
header.navigation-container .menu-container ul li:last-child {
  margin-right: 0;
}
header.navigation-container h1 {
    font-size: 1.3em;
    margin: 0;
    line-height: 1;
    padding: 0.5em 0.5em;
}
header.navigation-container .menu-container li {
    margin-left: 10px;
    position: relative;
    display: inline-block;
}
header.navigation-container .menu-container li > a {
    display: block;
    color: var(--header-link);
    font-size: 16px;
    font-family: var(--secondary-font-family);
    padding: 0.7em 0.5em;
    position: relative;
}
header.navigation-container .menu-container li > a:hover {
    color: var(--header-link-hover);
}
/* NESTED MENUS */
header.navigation-container .menu-container li ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 220px;
    height: auto;
    z-index: 100; /* Ensures it appears above other content */
    background: #fff;
}
header.navigation-container .menu-container li:hover ul {
    display: block;
}
header .site-title a {
    color: var(--header-link);
}
header h1.page-identity {
    text-align: left;
}
header h1.page-identity a {
    text-indent: -9999px;
    background-image: url("../images/drkmttr-angel-baby--transparent.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    text-align: left;
    height: 80px;
    aspect-ratio: 1/1;
    display: inline-block;
}
@media screen and (max-width: 39.9375em) {
    header h1.page-identity {
        left: 1em;
    }
}
/* MOBILE MENU */
input#control-nav {
    /* this is the actual checkbox, see ya! */
    visibility: hidden;
    position: absolute;
    left: -9999px;
    opacity: 0;
}
/* label icon */
[type=checkbox]+label.control-nav-label {
    display: block;
    margin: 0;
    position: relative;
    z-index: 99;
    line-height: 1;
    padding: 1em 0.5em;
    top: 50%;
    transform: translateY(-50%);
}
.control-nav-label:before {

}
.control-nav-label:hover {
    cursor: pointer;
}
.control-nav-label i {
    font-size: 1.8em;
}
.control-nav-label .control-nav-close {
    display: none;
}
input#control-nav:checked ~ .control-nav-label .control-nav-open {
    display: none !important;
}
input#control-nav:checked ~ .control-nav-label .control-nav-close {
   display: inline-block !important;
}
.mobile-menu-container {
    display: none;
}

/* MEDIUM */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {

}

/* SMALL */
@media screen and (max-width: 39.9375em) {
    .site-identity.relative {
        z-index: 1000;
    }
    header.navigation-container h1 {
        font-size: 1.1em;
    }
    input#control-nav:checked ~ .mobile-menu-container {
        display: block !important;
    }
    .mobile-menu-container {
        position: absolute;
        left: 0;
        top: 81px;
        width: 100%;
        background: rgba(0,0,0,0.8);

        height: calc(100vh - 81px);
        z-index: 100;
        text-align: center;
        font-size: 3em;

        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    header.navigation-container .menu-container,
    header.navigation-container .menu-container ul {
        display: block;
    }
    header.navigation-container .menu-container ul li {
        display: block;
    }
    header.navigation-container .menu-container.menu-container-mobile li > a {
       color: #fff;
       font-size: 1em;
       padding: 1em;
    }
}

.primary-content-container {
    min-height: 80dvh;
}
@media screen and (max-width: 39.9375em) {
    #about.primary-content-container {
        margin-top: 5em;
    }
}

.button,
form input[type='submit']{
    font-family: var(--primary-font-family), sans-serif;
    padding: 0.3em;
    background: var(--primary-bg);
    border: 3px solid var(--button-bg);
    color: #fff;
    border-radius: 0;
}
.button:hover,
form input[type='submit']:hover {
    background: var(--button-hover);
    border-color: var(--button-hover);
}
.button.green-bg {
    background-color: var(--primary-bg);
}


/* MAILING LIST */
.mailing-list-container,
.mailing-list-container form {
  position: relative;
}
.mailing-list-container input {
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: none;
  width: 100%;
  margin-bottom: 0;
}
.mailing-list-container button,
.mailing-list-container input[type='submit'] {
  position: absolute;
  right: 4px;
  bottom: 4px;
  margin-bottom: 0;
  width: auto;
}
.mailing-list-container .border {
  border: 1px solid #cacaca;
}
.border.border-radius {
  border-radius: 3px;
}
.mailing-list-homepage label {
  font-size: 1em;
}
.mailing-list-homepage .social-buttons a {
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1rem;
  padding: 12px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 30px;
  margin-right: 20px;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .mailing-list-homepage h4 {
    font-size: 20px;
  }
  .mailing-list-homepage .padding-container {
    padding-right: 0;
  }
}
@media screen and (max-width: 39.9375em) {
  #mailing-list {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .mailing-list-homepage h4 {
    font-size: 1.5em;
    font-weight: normal;
  }
  .mailing-list-container input {
    width: calc(100% - 110px);
  }
  .mailing-list-container button {
    padding-left: 5px;
    padding-right: 5px;
  }
  .mailing-list-homepage .padding-container {
    padding-top: 20px;
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
  }
  .mailing-list-homepage .mailing-list-container {
    padding-top: 0;
  }
}

h1.primary-title {
  font-size: 22px;
  line-height: 24px;
}
h4.primary-desc {
  font-size: 16px;
  line-height: 18px;
}

/* WELCOME */
.welcome-container {
    height: 60vh;
    min-height: 800px;
    position: relative;
}
.welcome-container > article,
.welcome-container article > section {
    position: relative;
    height: 100%;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .welcome-container {
        height: 50vh;
        min-height: 560px;
    }
}
/* SMALL */
@media screen and (max-width: 39.9375em) {
    .welcome-container {
        height: 40vh;
        min-height: 400px;
    }
}


.the-logo {
    width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto;
    text-indent: -9999px;
    background: url('../images/show-logo.png');
    background-repeat: no-repeat;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    display: block;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .the-logo {
        width: 400px;
    }
}
@media screen and (max-width: 39.9375em) {
    .the-logo {
        width: 300px;
    }
}
/* LATEST */
.container-latest:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-bg); /* Adjust color and height as needed */
}

.latest-title {
    font-size: 1.5em;
    padding: 0;
    margin: 0;
}
.latest-metadata {
    font-size: 1em;
    padding: 0;
    margin:0 ;
}
.latest-summary {

}
@media screen and (max-width: 39.9375em) {
    .container-latest .button-container .padding-right-none {
        padding-right: 0.5em;
    }
    .container-latest .row-latest {
        margin-left: 1em;
        margin-right: 1em;
    }
}




/*SINGLE */
.single-post .attribution {
  display: none;
}
body.single-post .avatar {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.single-post h1.entry-title {
    font-size: 2em;
}
.single-post h1.entry-title a {
    color: var(--black);
}



/* 404 ERROR!!! */
body.error404,
body.search-no-results {

}
body.error404 .giant-bg,
body.search .giant-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("");
  background-position: center center;
  background-size: cover;
  z-index: -1;
  -webkit-filter: blur(45px);
  -moz-filter: blur(45px);
  -o-filter: blur(45px);
  -ms-filter: blur(45px);
  filter: blur(45px);
}

/* CATEGORIES */
.cat-links ul {
    display: flex;
    padding: 0;
     list-style-type: none;
}
.cat-links ul li {
    margin-right: 10px;
}
.cat-links a {
    display:inline-block;
    border-radius: 20px;
    padding: 0.2em 0.7em;
    text-align:center;
    background: var(--button-bg);
    color: var(--white);
}

/* FOOTER */
footer.primary-footer {
    background-color: var(--footer-bg);
    position: relative;
    z-index: 30;
}
footer.primary-footer .identity {
  display: inline-block;
  width: 100%;
  /* CUSTOM */
  text-indent: -9999px;
  aspect-ratio: 3/2;
  background: url('../images/site-logo.png');
  background-repeat: no-repeat;
  background-size: cover;
}
footer.primary-footer a.identity:hover {

}
footer.primary-footer .social-buttons a {
  display: inline-block;
  color: #fff;
}

footer.primary-footer .social-buttons a.no-margin {
  margin-right: 0px;
}
footer.primary-footer a,
footer.primary-footer a:visited {
    color: var(--footer-link);
}
footer.primary-footer a:hover {
    color: var(--footer-link-hover);
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {

}
@media screen and (max-width: 39.9375em) {

}

.mailpoet-container {
    width: 100% !important;
}
#mailpoet_form_1 {
    max-width: 62.5rem;
    margin: 4em auto 0 auto;
}
.mailpoet_submit.button {
    min-width: 100px;
}
.mailpoet_form {
    margin: 0 auto;
}
@media screen and (max-width: 39.9375em) {
    .mailpoet_form_column.padding-left-small {
        padding-left:0;
    }
    .mailpoet_form .mailpoet_submit {
        width: 100%;
        margin: 0;
    }
}

/* ABOUT page - host section */
@media screen and (max-width: 39.9375em) {
    .container-host {
        display: block !important;
    }
}

/* CUSTOMIZER */

#wpadminbar {
    display: none !important;
}
