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

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

  --header-bg: #e67701;
  --header-link: #ffffff;
  --header-link-hover: #ffffff;

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

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

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

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

img::selection {
    background: transparent;
}

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

html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--black);
    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;
}
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;
}
.orange-bg {
    background: var(--primary-bg);
}
.orange-bg-trick,
.black-bg-trick,
.white-bg-trick,
.white-bg-2-trick {
    position:relative;
}
.orange-bg-trick:before,
.black-bg-trick:before,
.white-bg-trick:before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 120%;
    height: 100%;
     transform: rotate(3deg);
    background: var(--primary-bg);
}
@media screen and (max-width: 39.9375em) {
    .orange-bg-trick:before,
    .black-bg-trick:before,
    .white-bg-trick:before {
        background-size: auto 50%;
        transform: rotate(0deg);
        width: 100%;
        left: 0;
        top: 25px;
    }
}
.black-bg-trick:before {
    background: #000;
    transform: rotate(-2deg);
}
.white-bg-trick:before {
    background: #fff;
    transform: rotate(3deg);
    overflow: hidden;
}
.orange-bg-trick:after,
.black-bg-trick:after,
.white-bg-trick:after,
.white-bg-2-trick:after {
    content: '';
    position: absolute;
    top: 10px;
    left: -10%;
    width: 120%;
    height: 200px;
    background-image: url('../images/hr2.png');
    background-position: left top;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
}
.orange-bg-trick:after {
    transform: rotate(3deg);
    top:5.5%;
}
.black-bg-trick:after {
    top: -31px;
    background-image: url('../images/hr2--black.png');
    background-position: left top;
    background-size: cover;
    height: 300px;
    transform: rotate(0deg);
}
.white-bg-trick:after {
    top: -60px;
    background-image: url('../images/hr2--white.png');
    background-size: cover;
    background-position: left top;
    transform: rotate(2deg);
}
.white-bg-2-trick:after {
    top: -10px;
    z-index: 100;
    background-image: url('../images/hr3--white.png');
    background-size: cover;
    background-position: center bottom;
    transform: rotate(0deg);
}
@media screen and (max-width: 39.9375em) {
    .black-bg-trick:before {
        transform: rotate(0deg);
    }
    .black-bg-trick:after {
        background-size: auto 50%;
    }
    .white-bg-trick:before {
        transform: rotate(0deg);
    }
    .white-bg-trick:after {
        transform: rotate(2deg);
        background-size: auto 50%;
        height: 130px;
        top: 0;
        background-position: center top;
    }
}
/* HEADER */
header {

}
header.navigation-container {
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    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 ul li {
    margin-right: 10px;
}
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 a {
    display: inline-block;
    color: var(--header-link);
    font-size: 16px;
    font-family: var(--secondary-font-family);
    padding: 0.7em 0.5em;
    position: relative;
    top: 50%;
}
header.navigation-container .menu-container a:hover {
    opacity: 0.5;
}
header .site-title a {
    color: var(--header-link);
}
header h1.page-identity {
    text-indent: -9999px;
    background-image: url('../images/odd-man-out-logo--transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 80px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 5px;
    left: 0;
}
@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;
}
.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: 51px;
        width: 100%;
        background: rgba(0,0,0,0.8);
        height: 100vh;
        z-index: 600;
        text-align: center;
        font-size: 3em;
    }
    header.navigation-container .menu-container,
    header.navigation-container .menu-container ul {
        display: block;
    }
    header.navigation-container .mobile-menu-options {

    }
    header.navigation-container .menu-container a {
        top: auto;
        font-size: 22px;
    }
}

.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: 1em;
    background: var(--button-bg);
    color: #fff;
    border: none;
}
.button:hover,
form input[type='submit']:hover {
    background: 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: calc(100% - 160px);
  margin-bottom: 0;
}
.mailing-list-container button {
  position: absolute;
  right: 4px;
  bottom: 4px;
  margin-bottom: 0;
}
.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: 1001;
}
footer.primary-footer .identity {
  display: inline-block;
  width: 120px;
  /* CUSTOM */
  text-indent: -9999px;
  aspect-ratio: 1/1;
  background: url('../images/show-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 */
#wrapper {
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    position: absolute;
}
#wpadminbar {
    display: none !important;
}
.welcome-outer-container {
    aspect-ratio: 16/9;
    position: relative;
}
.welcome-inner-container {
    position: absolute;
    z-index: 200;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* mix-blend-mode: multiple; */
}
.welcome-inner-container iframe {
    object-fit: cover;
}

.player-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.bg-video.blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background-color: rgba(230,119,1,0.2);
    -webkit-backdrop-filter: blur(60px);
    -moz-backdrop-filter: blur(60px);
    -o-backdrop-filter: blur(60px);
    -ms-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    /* -webkit-filter: blur(45px);
    -moz-filter: blur(45px);
    -o-filter: blur(45px);
    -ms-filter: blur(45px);
    filter: blur(45px); */
}
.bg-video.blur:before {
    content: ' ';
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 1200px;
    height: 1200px;
    opacity: 1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e67701+53,e67701+100&1+0,0+100 */
    background: radial-gradient(ellipse at center,  rgba(230,119,1,1) 0%,rgba(230,119,1,0.47) 30%,rgba(230,119,1,0) 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    z-index: -1;
}
@media screen and (max-width: 39.9375em) {
    .player-container iframe {
        transform: scale(3);
    }
}
.primary-logo {
    width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto;
    text-indent: -9999px;
    background: url('../images/odd-man-out-logo--transparent.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
    z-index: 200;
    display: block;
    margin-bottom: 0.5em;
}
@media screen and (max-width: 39.9375em) {
    .primary-logo {
        width: 280px;
    }
    .welcome-outer-container {
        aspect-ratio: inherit;
        height: 50dvh;
        min-height: 450px;
    }
    .welcome-inner-container {

    }
}
.roster-outer-container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding-top: 1em;
    min-height: 90vh;
}
@media screen and (max-width: 39.9375em) {
    .roster-outer-container {
        padding-left: 2em;
        padding-right: 2em;
    }
}
.grid-triple.is-layout-flex {
    align-items: flex-start;
}
.grid-triple .wp-block-column {
    flex: 1 1 33.3333333%; /*grow | shrink | basis */
}
.grid-double.is-layout-flex {

}
.grid-double .wp-block-column {
    flex: 1 1 50%; /*grow | shrink | basis */

}

.roster-container .wp-block-image {

}
.roster-container .wp-block-image a {
    display: block;
    aspect-ratio: 1/1;
    border-radius: 1em;
    overflow: hidden;
    margin-bottom: 1em;
    transform: scale(0.9);
    transition: all 0.2s ease-out;
}
.roster-container .wp-block-image a:hover,
.roster-container .artist:hover a {
    transform: scale(1);
}
.roster-container .wp-block-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.roster-container h2 {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}
.roster-container p a {
    text-align: center;
    background: var(--button-bg);
    color: #fff;
    font-weight: bold;
    font-family: var(--primary-font-family), sans-serif;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 0.5em;
    display: block;
    width: 90%;
    margin: 0 auto;
    border-radius: 2em;
    transition: all 0.2s ease-out;
}
.roster-container p a:hover{
    background: var(--button-hover);
    border: 1px solid rgba(0,0,0,0.2);
    width: 100%;
}
.artist {
    position: relative;
}
.artist:before {
    content: ' ';
    font-family: var(--primary-font-family), sans-serif;
    text-transform: uppercase;
    font-size: 0.8em;
    display: inline-block;
    padding: 0.2em 0.6em;
    background: rgba(0,0,0,0.4);
    color: #fff;
    position: absolute;
    top: 20px;
    right:20px;
    border-radius: 1em;
    z-index: 10;
    transition: all 0.2s ease-out;
}
.artist:hover:before {
    top: 10px;
    right: 10px;
}
.artist.artist-publishing:before {
    content: 'Publishing';
}
.artist.artist-sync:before {
    content: 'Sync';
}
.artist.artist-blank:before {
    display: none;
}
@media screen and (max-width: 39.9375em) {
    .grid-triple.is-layout-flex {
        display: block;
    }
    .music-outer-container,
    .grid-double.is-layout-flex {
        display: block;
        width: 100%;
    }
    .grid-double .wp-block-column {
        flex: 0 0 100%;
    }
}

.hover-grow {
    transition: all 0.2s ease-out;
}
.hover-grow:hover {
    transform: scale(1.1)
}
.img-mix-container,
.playlist-container {
    min-height: 400px;
    overflow: hidden;
    transition: all 0.2s ease-out;
}
.img-mix-container a,
.playlist-container iframe {
    display: block;
    position: absolute;
    right: -5%;
    top: 2%;
    width: 50%;
    height: auto;
    transition: all 0.2s ease-out;
    border-radius: 1em;
    overflow: hidden;
}
.playlist-container iframe {
    min-height: 600px;
}
.img-mix-container:hover a,
.playlist-container:hover iframe {
    right: 0;
    top: 0;
}
.img-mix a {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.img-mix a img {
    width: 100%;
    height: auto;
}
.contact-inner-container textarea {
    height: 110px;
}
@media screen and (max-width: 39.9375em) {
    .img-mix-container,
    .playlist-container {
        min-height: 0;
    }
    .music-container  div:first-child {
        padding-right: 1em;
    }
    .music-container h2 {
        font-size: 2em;
    }
    .img-mix.rounded {
        border-radius: 0;
    }
    .img-mix-container a {
        position: relative;
        width: 150%;
        border-radius: 0;
        border-top-left-radius: 1em;
    }
    .playlist-container {
        min-height: 600px;
        padding-left: 1em;
    }
    .playlist-container iframe {
        position: relative;
        width: 100%;
        height: 600px;
        top: auto;
        right: auto;
        border-radius: 0;
        border-top-left-radius: 1em;
        aspect-ratio: auto;
    }
    .contact-outer-container .row .row {
        margin: 0;
    }
    .contact-inner-container {
        padding: 0 1em;
    }
    .contact-inner-container textarea {
        height: 100px;
    }
}

/* ABOUT */
.about-page,
.about-section-container {
    background: #000;
    color: #fff;
    min-height: 90dvh;
    padding-left: 2em;
    padding-right: 2em;
}
.about-section-container {
    min-height: 0;
    padding-top: 200px;
}
.about-container {
    min-height: 50vh;
    font-size: 1.4em;
}
.about-container p {
    text-wrap: pretty;
}
.about-container p:first-child {
    font-size: 1.4em;
}
@media screen and (max-width: 39.9375em) {
    .white-bg-2-trick:after {
        top: -50px;
    }
    .about-section-container {

        padding-top: 120px;
        padding-bottom: 120px;
        font-size: 1em;
         min-height: 0;

    }
    .about-container p:first-child {
        font-size: 1.1em;
    }
}
/* insane wordpress global style - gotta overwrite it */
.is-layout-flex > :is(*, div:not(.row)) {
    margin: 0 auto !important;
}
