/*
Theme Name: Slammin Vinyl
Author: Max Quinn
Description: A custom wordpress theme for Slammin Vinyl
Version: 0.0.1
*/

@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'bebas';
    src: url('../fonts/bebas.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body,
html {
margin:0;
padding:0;
overflow-x:hidden;
overflow-y:scroll !important;
font-family: 'Encode Sans', sans-serif;
color: #161616;
letter-spacing: 0px;
width:100vw;
line-height:140%;
font-weight: 400;
}

:focus {
    outline: none;
}

.loader {
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: #000;
    top: 0px;
    position: fixed;
    right: 0px;
    transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-delay: 0.3s;
  easing: 'easeInOutQuint';
}

.loader.animate {
    width: 0vw;
    height: 100vh;
    z-index: 10;
    background-color: #000;
    top: 0px;
    position: fixed;
}


a {
  text-decoration:none;
  color:#00FFBB;
}

p {
  color: #161616;
  line-height: 1.8;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
}

p.small {
  margin: 30px 0;
  font-size: 14px;
}

p.big {
  font-size: 24px;
}

p.greytext {
  color: #F6F6F6;
}

p.label {
  margin: 0;
}

h1 {
  font-family: 'bebas', sans-serif;
  color:#fff;
  font-size: 72px;
  line-height: 84px;
  letter-spacing: 6px;
  padding:6px 18px 9px;
  box-sizing: border-box;
  display:table;
  margin: 18px 0;
  font-weight: 400;
}

h1:after { 
    content: "";
    width: 0%;
    height: 100%;
    background-color: #161616;
    position: absolute;
    top: 0px;
    left:0px;
    z-index:-1;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-delay: 0.9s;
    easing: 'easeInOutQuint';
    border-bottom: 6px solid #161616;

}

.animate h1:after {
    width: 100%;
}

h2 {
  font-family: 'bebas', sans-serif;
  letter-spacing: 3px;
  font-weight: 400;
  font-size: 36px;
  color: #161616;
  overflow: hidden;
  line-height: 1.1;
  margin: 12px 0;
}

h2.teal {
  color: #00FFBB;
}

h2.divider:after {
  height: 2px;
  width: auto;
  background-color: #F6F6F6;
  content:"";
  display:inline-block;
  width:100%;
  margin-right:-100%;
  margin-top: -30px;
  margin-left: 12px;
}

h2.dividerteal:after {
  height: 2px;
  width: auto;
  background-color: #00FFBB;
  content:"";
  display:inline-block;
  width:100%;
  margin-right:-100%;
  margin-top: -30px;
  margin-left: 12px;
}

a.button {
  font-family: 'bebas', sans-serif;
  color:#161616;
  padding:24px 30px;
  letter-spacing:2px;
  background-color: #00FFBB;
  font-size: 18px;
  cursor: pointer;
  border: none;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}

a.button:hover {
  background-color:#85FFDF;
}

a.button.buttonleft {
  margin-top: 30px;
  margin-right: 30px;
}

a.button.buttonoutline {
  background-color: transparent;
  color: #F6F6F6;
  border: 2px solid #00FFBB;
}

a.button.buttonoutline:hover {
  box-shadow: inset 0px 0px 0px 50px #00FFBB;
  color:#161616;
}


a.button.buttonoutlinedark {
  background-color: transparent;
  color: #161616;
  border: 2px solid #00FFBB;
}

a.button.buttonoutlinedark:hover {
  box-shadow: inset 0px 0px 0px 50px #00FFBB;
  color:#161616;
}

a.button.hero {
  display:inline-block;
  margin-top: 30px;
  opacity: 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-delay: 1.8s;
  easing: 'easeInOutQuint';
}

.animate a.button.hero {
  opacity: 1;
}

/* HEADER */

#nav {
  width:100vw;
  box-sizing:border-box;
  padding:20px 50px;
  background-color: #161616;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  position:fixed;
  top: 0;
  z-index:10;
  border-bottom: 1px solid #313131;
}

.logo {
  height:auto;
  -webkit-align-self: flex-start;
   align-self: flex-start;
}

.logo img {
  width:100px;
}

.menu {
  margin-left: auto;
}

.social {
  margin-left: 12px;
}

.menu li {
  display: inline-block;
}

.menu a {
  display: inline-block;
  font-size:12px;
  letter-spacing:3px;
  padding: 0 15px;
  color:#F6F6F6;
  transition-duration:0.5s;
  -webkit-transition-duration: 0.5s;
  font-family: 'bebas', sans-serif;
}

.menu a:before {
  content:"—";
  color:#00FFBB;
  padding-right:3px;
}

.menu a:after {
  content:"—";
  color:#00FFBB;
  padding-left:3px;
}

.menu a:hover {
  color: #00FFBB;
}

img.icon_social {
  width:25px;
  margin-bottom:-8px;
}

.social a {
  padding: 0 0 0 5px;
}

.social a:before,.social a:after {
  display:none;
}


.pagecontent {
  margin-top: 87px;;
}

.nav_mobile {
  cursor: pointer;
  display:none;
  margin-left: auto;
  text-align:right;
  z-index:22;
  }

#nav-icon {
  width: 48px;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #00FFBB;
  opacity: 1;
  left: 25%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:nth-child(4) {
  top: 20px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* HERO SECTION */

#hero {
  padding:90px 60px;
  position: relative;
  z-index: 1;
}

.loading h1 {
  opacity:0;
}

#hero {
  background-size: cover;
}


/* Basic background image styling. */
.home-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Styles for the alternating / transition effect. */
.toggle-image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  transition: opacity 1s ease-in-out;
}

/* Styles for the specific images. */
.first-image {
  background-image: url("../images/Hero_Home1.jpg"); 
  z-index: -4;
  opacity: 0;
}

.second-image {
  background-image: url("../images/Hero_Home2.jpg");
  z-index: -3;
  opacity: 0;
}

.third-image {
  background-image: url("../images/Hero_Home3.jpg");
  z-index: -2;
  opacity: 0;
}

.fourth-image {
  background-image: url("../images/Hero_Home4.jpg");
  z-index: -1;
  opacity: 0;
}

.first-image.show {
  opacity: 1;
}

.second-image.show {
  opacity: 1;
}

.third-image.show {
  opacity: 1;
}

.fourth-image.show {
  opacity: 1;
}

.heritage {
  background-image: url("../images/Hero_Home2.jpg");
}


/* COPY SECTION */

.section {
  padding: 90px 60px;
}

.section.small {
  padding: 40px 60px;
}

.columns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.col {
  flex: 1;
}

.leftcol {
  margin-right: 60px;
}

.novertpadding {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.grey {
  background-color: #F6F6F6;
}

.black {
  background-color: #161616;
}

p.full {
  width: 100%;
  max-width: 960px;
}


/* BLOCKS */

.blocks {
  margin: 60px 0;
  display:inline-block;
  width: 100%;
}

.block {
  width: calc(50% - 30px);
  float:left;
  margin-bottom: 60px;
}

.block:nth-child(odd) {
  margin-right:60px;
}

.block:nth-last-of-type(-n+2) {
    margin-bottom: 0px !important;
}

.blockclean.border {
  border-right: 1px solid #DCDCDC;
}

.blockcontent {
  padding: 30px;
}

.blockclean {
  padding: 90px 60px !important;
  width: calc(50% - 30px);
  float:left;
  box-sizing: border-box;
}

img.attachment-full.size-full.wp-post-image {
    max-width: 100% !important;
    height: auto !important;
}

img.blockicon {
  margin-bottom: 18px;
}


/* EVENTS INFO STRIP */

.col.date span, .col.time span, .col.location span {
    padding-left: 42px;
}

.col.date:before {
    background-image: url("../images/Icon_Date.svg");
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    margin-top: -1px;
}

.col.time:before {
    background-image: url("../images/Icon_Time.svg");
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    margin-top: -1px;
}

.col.location:before {
    background-image: url("../images/Icon_Location.svg");
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    margin-top: -1px;
}

.videocontainer {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.acf-map {
  width: 100%;
  height: 500px;
  border: none;
  margin: 0;
}

/* fixes potential theme css conflict */
.acf-map img {
   max-width: inherit !important;
}


/* HERITAGE TIMELINE */

.timeline {
    background-color: #F6F6F6;
}

.timeline_container {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.timeline_container {
  &::-webkit-scrollbar {
    display: none;
  }
}

img.timeline_image {
  height: 600px;
  width:auto;
}

.timeline_next {
    width: 48px;
    height: 48px;
    background-image: url(../images/Timeline_Arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    left: 100vw;
    margin-left: -96px;
    top: 276px;
    z-index:6;
}


/* FOOTER */

#footer {
  width:100vw;
  text-align:left;
  height:auto;
  position:relative;
  background-color: #161616;
  text-align:left;
  padding: 42px 60px;
  box-sizing:border-box;
  display: flex;
  align-items: top;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid #313131;

}

.footer.content {
  width:50%;
}

.footer.content.left {
  text-align:left;
}

.footer.content.right {
  text-align:right;
}

#footer p {
  font-size: 14px;
  color: #F6F6F6;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1040px) {
#nav {
  padding:20px 25px;
}
}

@media screen and (max-width: 960px) {

.menu a {
    padding: 0 10px;
    font-size:11px;
}
}

@media screen and (max-width: 840px) {
.menu a {
    padding: 0 5px;
}
.block {
  width: 100%;
}
.block:nth-last-of-type(-n+2) {
  margin-bottom: 60px !important;
}
.block:last-of-type {
  margin-bottom: 0px !important;
}
.block:nth-child(odd) {
  margin-right: 0px;
}
.blockclean {
  width: 100%;
}
.blockclean.border {
  border-right: none;
  border-bottom: 1px solid #DCDCDC;
}
.columns {
    display: block;
}
.col {
  margin-bottom: 24px;
}
.col:last-of-type {
  margin-bottom: 0px;
}
a.button {
  width: 100%;
}
a.button.hero {
  width: auto;
}
a.button.buttonoutlinedark, a.button.buttonoutline {
  margin-top: 24px;
}
.leftcol {
    margin-right: 0px;
    margin-bottom: 60px;
}
}

@media screen and (max-width: 780px) {
.menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    left: 0px;
    top: 0px;
    margin-left:-100vw;
    opacity:0;
    transition-duration: 0.5s;
  	-webkit-transition-duration: 0.5s;
  	padding-top:90px;
}
.section {
    padding: 60px 30px;
}
#hero {
    padding: 60px 30px;
}
.blockclean {
  padding: 60px 30px !important
}
.nav_mobile {
  display:block;
}
#nav.open .menu {
    opacity:1;
    margin-left:0;
}
.menu li {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transition-duration: 0.5s;
  	-webkit-transition-duration: 0.5s;
  	transition-delay: 0.3s;
  	-webkit-transition-delay: 0.3s;
}
#nav.open .menu li {
	opacity: 1;
}
.menu a {
	font-size: 18px;
	line-height: 1.4;
}
}

@media screen and (max-width: 640px) {
h1 {
  font-size: 42px;
  line-height: 64px;
  margin: 0px;
}
p.big {
    font-size: 18px;
}
h2 {
  font-size: 32px;
}
#footer {
  display: block;
  padding: 60px 30px;
}
.footer.content.right {
  text-align: left;
}
.footer.content {
  width: 100%;
}
img.timeline_image {
  height:300px;
}
.timeline_next {
    width: 30px;
    height: 30px;
    left: 100vw;
    margin-left: -60px;
    top: 135px;
    z-index:6;
}
}

