/*
Theme Name: C.R.E.A.M
Author: George English
Author URI: http://englishwebdesign.com
Description: Bespoke theme
Version: 999.9.9
*/

* {
	box-sizing: border-box; 
}

@font-face {
    font-family: 'PF Din Stencil';
    src: url('fonts/PFDinStencil-Medium.woff2') format('woff2'),
        url('fonts/PFDinStencil-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mistral';
    src: url('fonts/Mistral.woff2') format('woff2'),
        url('fonts/Mistral.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
  --black: 		#111;
  --brown: 		#c04848;
  --red: 		#e23539;
  --mauve: 		#623e6a;
  --aubergine: 	#480048;
  --purple:		#5f2c82;
  --pink: 		#f818ac;
  --darkblue:	#2a295f;
  --blue: 		#017ff8;
  --cyan: 		#05f2ff;
  --turquoise: 	#05d5c5;
  --green: 		#08a753;
  --lime: 		#b4d40d;
  --yellow: 	#fbe307;
  --orange: 	#ffb35c;
  --stone: 		#f1e5c1;
}

*[data-border="black"],
*[data-border="purple"],
*[data-border="darkblue"] {
	color: #fff;
}

.pinboard {
	background-color: var(--black);
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-position: center;
	color: #fff;
}

@media (max-width: 567px) {
	.parallax {
		transform: none !important;
	}
}

/*html,
body {
	scroll-snap-type: y mandatory;
}*/

body {
	margin: 0;
	padding: 4vh;

	font-size: 16px;

	padding-bottom: 0;
	font-family: 'Roboto Mono', monospace;
	transition: 0.4s;
	line-height: 1.25;

	--main-border: var(--yellow);
	background: var(--main-border);

	color: var(--black);
}

body.page-template-about {
	--main-border: var(--black);
}

body:before,
body:after {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	height: 4vh;
	z-index: 10;
	background: var(--main-border);
	transition: 0.4s;
}

body:before {
	top: 0;
}

body:after {
	bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

h1, h2, h3, p {
	margin: 0 0 30px;
}

h3 {	
	max-width: 10em;
}

a {
	color: #00f;
}

ul {
	list-style: none;
	padding: 0;
}

.input-btn-container {
	display: inline-block;
	position: relative;
	max-width: 400px;
	width: 100%;
}

.input-btn-container button {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 2;

	transform: translateY(-50%);

	border: none;
	background: transparent;
	color: #fff;

	padding: 0;
	margin: 0;
	cursor: pointer;
}

.input-btn-container button:hover {
	color: var(--pink);
}

.input-btn-container button svg {
	vertical-align: top;
}

input {
	display: inline-block;
	width: 100%;
	font-family: inherit;
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	margin: 0;
	padding: 0.75em 0;
	font-size: 16px;
	color: #fff;
	border-radius: 0;
	-webkit-appearance: none;
}

@media (min-width: 568px) {
	input {
		font-size: 19px;
	}
}

input:hover,
input:focus {
	outline: none;
	border-color: var(--main-border);
}

/* Layout/Grid */

.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

@media (min-width: 568px) {
	.container {
		width: 85%;
	}
}

.row {
	display: flex;
	margin-left: -2vh;
	margin-right: -2vh;
	margin-bottom: -4vh;
}

.row-grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 568px) {
	.row-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.col {
	padding-left: 2vh;
	padding-right: 2vh;
	padding-bottom: 4vh;

	flex-grow: 1;
}

.row.wide-gutter {
	margin-left: -25px;
	margin-right: -25px;
	margin-bottom: -50px;
}

.row.wide-gutter .col {
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 50px;
}

/* Header/Menu */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 30;

	padding: 8vh 6vh;

	display: flex;
	align-items: center;
	justify-content: space-between;

	color: #fff;

	mix-blend-mode: exclusion;

}

@media (min-width: 568px) {
	.site-header {
		font-size: 24px;
		padding: 8vh;
	}
}

.site-header-logo {
	mix-blend-mode: normal;
	pointer-events: none;
}

.site-header .logo {
	pointer-events: auto;
}

.site-header .logo img {
	height: 12vh;
	width: auto;

	margin-top: -2vh;

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.menu-toggle {
	border: none;
	background: none;
	margin: 0;
	padding: 0;
	
	font-weight: 500;
	font-size: inherit;
	font-family: inherit;

	text-transform: uppercase;
	color: inherit;

	cursor: pointer;

	position: relative;
}

@media (pointer:fine) {

	section a {
		position: relative;
	}

	section a:not(.btn):hover:before,
	.menu-toggle:hover:before,
	.menu-toggle:hover:after,
	.site-header .social-links a:hover:before,
	.site-header-menu a:hover:before {
		content: "";
		position: absolute;
		top: 33%;
		left: 0;
		right: 0;
		bottom: 33%;
		background: var(--black);

		transition: transform 0.2s;

	}

	section a:not(.btn):hover:before {
		background: #00f;
	}

}

body.menu-toggled-on .menu-toggle:before {
	transform: rotate(45deg);
}

body.menu-toggled-on .menu-toggle:after {
	transform: rotate(-45deg);		
}

.site-header-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;

	padding: 4vh;

	padding-left: 15%;

	background: var(--main-border);
	transition: 0.4s;

	font-weight: 600;
	font-size: calc(24px + 7.5vw);
	line-height: 1.1;
	letter-spacing: -0.05em;

	display: flex;
	align-items: center;

	visibility: hidden;
	pointer-events: none;

	opacity: 0; /*0.95;*/
}

@media (max-width: 567px) {
	.site-header-menu {
		line-height: 1.5;
	}
}

.site-header-menu a {
	color: #00f;
	text-decoration: none;
	transition: 0.2s;
	display: inline-block;
	position: relative;
}

/*.site-header-menu a:hover {
	transform: translateX(0.25em);
}*/

.site-header-menu ul {
	list-style: none;
	padding: 0;
}

.site-header-menu li {
	transform: translateY(-10%);
	opacity: 0;
	
}

body.menu-toggled-on .site-header-menu {
	visibility: visible;
	pointer-events: auto;

	opacity: 0.95;
}

body.menu-toggled-on .section-title {
	transform: translateY(10%);
	opacity: 0;
	transition: 0.4s;
}

body.menu-toggled-on .site-header-menu ul li {
	transform: none;
	opacity: 1;
	transition: 0.4s;
	transition-delay: 0.2s;
}

body.menu-toggled-on .site-header-menu li + li {
	transition-delay: 0.25s;
}

body.menu-toggled-on .site-header-menu li + li + li {
	transition-delay: 0.3s;
}

body.menu-toggled-on .site-header-menu li + li + li + li {
	transition-delay: 0.35s;
}

body.menu-toggled-on .site-header-menu li + li + li + li + li {
	transition-delay: 0.4s;
}

/* Sections */

.section-wrapper {
	position: relative;
}

/* */

.section2 {
	margin-bottom: 4vh;
	overflow: hidden;
}

/*.section2 + .section2 {
	padding-top: 0;
}*/

.section2 .row {
	align-items: center;
}

.section2 ul {
	line-height: 2;
}

/* */

.section {
	min-height: calc(100vh - 8vh);
	margin-bottom: 4vh;
	padding-left: 2vh;
	padding-right: 2vh;

	display: flex;
	align-items: center;
	justify-content: space-between;

	position: relative;

	/*scroll-snap-align: start;
	scroll-margin-top: 4vh;*/

	background-position: center;
	/*overflow: hidden;*/
}

.section:before {
	background-position: center;
}

.section-inner {
	padding-top: 8vh;
	padding-bottom: 8vh;
}

.section-inner,
.section .inner {
	background-color: var(--main-border);
	transition: background-color 0.4s;
	
	position: relative;
	font-size: 15px;
}

.section-inner p:first-child:before,
.section .inner p:first-child:before {
	content: "";
	display: block;
	width: 3em;
	border-top: 3px solid;
	margin-bottom: 2em;
}

.section2 p:last-child,
.section-inner p:last-child,
.section .inner p:last-child {
	margin: 0;
}

.section-title {
	font-family: 'PF Din Stencil';
	font-size: calc(64px + 6.25vw); /*10vw;*/
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;

	margin-top: 1.25em;
	margin-bottom: 0.75em;

	margin-left: 8vh;
	margin-right: 8vh;
	padding-left: 4vh;


	
	/*color: var(--main-border);*/

	transition: color 0.4s;

	font-weight: 400;

}

.section-title span {
	font-family: 'Mistral';
	text-transform: none;
	letter-spacing: 0;
	position: absolute;
	bottom: 50%;
	left: 0;
	font-size: 0.75em;
	white-space: nowrap;
}

@media (max-width: 1023px) {
	.section-food,
	.section-coffee,
	.section-music {
		flex-direction: column;
		justify-content: flex-end;
		min-height: 50vh;
	}
}

@media (max-width: 567px) { 

	.section2 .row {
		flex-wrap: wrap;
	}

	.section2 .row .col {
		width: 50%;
	}

	.section .section-title {
		order: -1;
	}

	.section-about-landing {
		padding-top: 20vh;
	}

}

@media (min-width: 568px) {

	.section2,
	.section .inner,
	.section-inner {
		font-size: 19px;
	}

	.section2 {
		padding: 20vh 0;
	}

	.section .inner {
		width: 40%;
		padding: 80px;
		padding-top: 130px;
	}

	.section .inner:first-child {
		padding-left: 4vh;
	}

	.section .inner:last-child {
		padding-right: 4vh;
	}

}

@media (min-width: 1024px) {

	.section-inner {
		position: absolute;
		bottom: 50%;
		transform: translateY(50%);
		right: 0;
		width: 40%;
		padding: 80px;
		padding-top: 130px;
		background-color: var(--main-border);
	}

	.section-coffee + .section-inner {
		padding-right: 4vh;
		margin: 0;
	}

	.section-food + .section-inner {
		right: unset;
		left: 0;
		padding-left: 4vh;
		margin: 0;
	}

	.section-music + .section-inner {
		bottom: 0;
		transform: none;
		padding-bottom: 0;
	}

}

/* */

.scroll-down-arrow {
	position: absolute;
	bottom: 4vh;
	left: 50%;
	z-index: 5;
	transform: translateX(-50%);

	color: var(--main-border);
}

@media (max-width: 767px) {
	.scroll-down-arrow {
		bottom: 32vh;
	}
}

.section-landing {
	background-color: var(--black);
	color: #fff;

	/*background-image: url('img/bg1.jpg');
	background-size: cover;
	background-position: center;
	background-blend-mode: luminosity;*/

	text-align: center;
	justify-content: center;

	/*overflow: visible;*/

}

/*.section-landing:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	opacity: 0.9;
	pointer-events: none;
}*/

.rotator {
	position: absolute;
	top: 50%;
	left: 50%;
	transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.rotator div {
	transform: translate(-50%, -50%);
}

.section-landing .section-title {
	width: 100vw;

	font-size: 25vw;
	margin: 0;
	margin-left: -4vh;
	margin-right: -4vh;
	margin-top: 8vh;

	color: #fff;

	cursor: default;

	z-index: 5;
	overflow: hidden;
}

.section-landing .section-title span {
	bottom: unset;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.075em;

	letter-spacing: 1em;
	color: #fff;

	font-family: 'Roboto Mono', monospace;
	text-transform: lowercase;

	mix-blend-mode: difference;

}

@media (max-width: 567px) {
	.section-landing .section-title span {
		display: none;
	}
}

.section-landing .section-title span b {
	color: var(--main-border);
}

/*.section-landing h2 {
	margin: 0;
	font-size: 3vmax;
	letter-spacing: 1em;
	line-height: 2;
	text-transform: uppercase;	

	display: inline-flex;
	align-items: center;
}

/*@media (orientation: portrait) {
	.section-landing h2 {
		flex-direction: column;
	}
}

.section-landing h2 img {
	height: 5em;
	width: auto;			
}

@media (orientation: portrait) {
	.section-landing h2 img {
		order: -1;
		margin-bottom: 1em;
	}

	.section-landing h2 span {
		padding-left: 1em;
	}

}

@media (orientation: landscape) {
	.section-landing h2 img {
		margin-left: 1em;
		margin-right: 2em;
		margin-top: -0.5em;
	}
}*/

.section-landing .spray {
	position: absolute;
	top: 20%;
	left: -4vh;
	right: -4vh;
	bottom: 20%;
	width: 100vw;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	
	background-repeat: no-repeat;
	background-position: center; 

	background-image: url('img/spray-cross.png');
	background-size: cover;

	transform: translateY(4vh);
	transition: background-color 0.4s;
	/*background-color: var(--main-border);*/
}

@media (min-width: 568px) {

	.section-landing .spray {
		background-color: var(--main-border);
	}

}

@media (min-width: 1024px) {

	.section-landing .section-title {
		font-size: 25vw;
	}

}

/* */

.section-lower {
	background-color: var(--black);
	color: #fff;
	font-size: 3vh;text-align: center;

	background-image: url('img/bg3.jpg');
	background-size: cover;
	background-position: center;
	background-blend-mode: luminosity;	
}

.section-lower:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	opacity: 0.9;
	pointer-events: none;
}

.section-lower .spray {
	position: absolute;
	top: 20%;
	left: -4vh;
	right: -4vh;
	bottom: 20%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;

	background-repeat: no-repeat;
	background-position: center;

	background-image: url('img/spray-line.png');
	background-size: contain;
}

.section-lower h2 {
	font-size: 0.75em;
	margin: 0 0 1.25em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: 'PF Din Stencil';
}

/* */

.social-links {
	display: flex;
}

.social-links a {
	color: inherit;
	font-family: inherit;
	position: relative;
	text-decoration: none;
}

.social-links a + a {
	margin-left: 1em;
}

/* */

.social-icons {
	display: inline-flex;
}

.social-icons a {
	color: inherit;
	text-decoration: none;
	width: 2.5em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icons a:hover {
	color: var(--main-border);
}

.social-icons svg {
	width: 1.25em;
	height: 1.25em;
}

.address {
	position: absolute;
	bottom: 4vh;
	left: 0;
	right: 0;
	font-family: 'PF Din Stencil';
}

.address svg {
	margin-bottom: 0.5em;
	color: var(--main-border);
}

/* */

.section-coffee {
	background: linear-gradient(to top right, var(--purple) 25%, var(--brown));

	display: flex;
	

	font-size: 16px;
}

.section-coffee:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;

	background-image: url('img/unsplash/fahmi-fakhrudin-nzyzAUsbV0M-unsplash-resized.jpg');
	background-size: cover;
	mix-blend-mode: luminosity;
	opacity: 0.5;
}

.section-coffee .section-title {
	color: var(--aubergine);
	/*font-size: 9vw;*/
}

.section-coffee .section-title span {
	color: var(--pink);
}

/* */

.section-food {
	background-image: url('img/unsplash/honey-yanibel-minaya-cruz-fPWxYxfBVYM-unsplash-resized.jpg');
	background-size: cover;
	justify-content: flex-end;
}

.section-food .section-title {
	color: var(--black);
	font-size: calc(72px + 6.25vw);
	/*font-size: 11vw;*/
}

.section-food .section-title span {
	color: var(--lime);
}

/* */

.section-music {
	background-color: var(--black);
}

@media (min-width: 1024px) {
	.section-music {
		align-items: flex-end;
	}
}

.section-music:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;

	background-image: url('img/unsplash/chase-fade-XOLIrILp-vI-unsplash-resized.jpg');
	background-size: cover;
	mix-blend-mode: luminosity;
	opacity: 0.5;
}

.section-music .section-title {
	color: var(--black);
	padding-left: 0;
}

.section-music .inner {
	/*margin-bottom: -12vh;*/
	/*padding-bottom: 0;*/
}

.section-music .section-title span {
	color: var(--red);
	font-size: 0.666em;
	text-transform: uppercase;
	bottom: unset;
	top: 50%;
	left: 0; /*4vh;*/
	text-shadow: 0.01em 0.03em 0 var(--main-border);  
}

/* */

.section-events {
	background: linear-gradient(to top right, var(--blue), var(--pink));
	align-items: flex-end;
}

.section-events:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;

	background-image: url('img/unsplash/vladimir-proskurovskiy-86goyWFOn7w-unsplash-resized.jpg');
	background-size: cover;
	mix-blend-mode: luminosity;
	opacity: 0.5;
}

.section-events .inner {
	margin-bottom: -4vh;
}

.section-events .section-title {
	/*font-size: 9vw;*/
}

.section-events .section-title span {
	color: var(--orange);
}

.section-upcoming-events h3 {
	color: var(--pink);
}

/* */

.section-merch {
	align-items: flex-end;
	background-color: var(--black);
}

.section-merch:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;

	background-image: url('img/unsplash/jane-duursma-CWEuo_qZsrI-unsplash-resized.jpg');
	background-size: cover;
	background-position: center;
}

.section-merch .section-title {
	text-shadow: 0.01em 0.03em 0 var(--main-border);
}

.section-merch .section-title span {
	color: var(--yellow);
}

/*.section-merch .inner,
.section-featured-products {
	color: var(--darkblue);
}*/

/* */

@media (prefers-reduced-motion: no-preference) {

	.animate {
		transition: opacity 0.4s, transform 0.8s;
	}

	body.intersection-observer .animate.animate-hidden {
		opacity: 0;
		transform: translateY(40px);
	}

	.animate:first-of-type + .animate {
		transition-delay: 0.2s;
	}

	.animate:first-of-type + .animate + .animate {
		transition-delay: 0.4s;
	}

	.animate:first-of-type + .animate + .animate + .animate {
		transition-delay: 0.6s;
	}

	.animate:first-of-type + .animate + .animate + .animate + .animate {
		transition-delay: 0.8s;
	}

	.animate:first-of-type + .animate + .animate + .animate + .animate + .animate {
		transition-delay: 1s;
	}

}

/* About Page */

.section-about-landing {
	background-color: var(--black);
	color: #fff;

	background-image: url('img/bg1.jpg');
	background-size: cover;
	background-position: center;
	background-blend-mode: luminosity;

	/*padding-top: 4vh;*/

	justify-content: center;


	flex-direction: column;
}

.section-about-landing .sig {
	font-family: 'Mistral';
	opacity: 0.5;
	font-size: 2em;
}

/*.section-about-landing:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	opacity: 0.5;
	pointer-events: none;
}*/

.section-about-landing .section-title {
	/*font-size: 12.5vw;*/
	font-size: calc(32px + 12.5vw);

	text-transform: none;
	padding: 0;
	text-shadow: 
		0.01em 0.03em 0 var(--cyan), 
		0.02em 0.06em 0 var(--pink), 
		0.03em 0.09em 0 var(--yellow), 
		0.04em 0.12em 0 var(--black);


	background-image: url('img/spray-line.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.section-about-landing .section-title span {
	color: var(--pink);
	text-shadow: none;
}

/* */

.website-by {
	color: inherit;
	position: absolute;
	bottom: 4vh;
	right: 4vh;
	font-size: 14px;
	opacity: 0.5;
	text-decoration: none;

	display: none;
}

.website-by:hover {
	opacity: 1;
}

/* */

.btn-spotify {
	text-decoration: none;
	background-color: #1ED760;
	color: var(--black);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	padding: 1em;
	padding-right: 1.5em;
	border-radius: 2em;
	font-size: 15px;
	margin-top: 0.5rem;
}

.btn-spotify:hover {
	opacity: 0.9;
}

.btn-spotify svg {
	margin-right: 1em;
}