/*
	Theme Name: Firestarter
	Theme URI: https://wpdedicated.uk
	Description: Hand Crafted theme
	Version: 1.0
	Author: Ben Kitching
	Author URI: https://benkitching.uk
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

:root {
  --white: #fadcd2;
  --charcoal: #191816;
  --red: #ff2b00;
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
html {
	font-size: 3vw;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

body {
	font: normal 1.6rem/1.2 'Pitch Sans', Arial, sans-serif;
	color: var(--charcoal);
	margin: 0;
	padding: 0;
	max-width: 100vw;
	overflow-x: hidden;
	background-color: var(--white);
}
body.loading, body.burger {
	overflow:hidden;
	height: 100vh;
}

#header, main, .footer, .bg {
	max-width: 1920px;
	width: 100vw;
	margin-left:auto;
	margin-right: auto;
	position: relative;
	overflow-x:clip;
}

#loader {
	background-color:#fff;
	width:100vw;
	height:100vh;
	position:absolute;
	top:0;
	left:0;
	z-index:9999999;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
img {
	max-width:100%;
	vertical-align:bottom;
}

/*------------------------------------*\
    LINKS
\*------------------------------------*/

a {
	color:inherit;
	text-decoration:underline;
	transition:0.5s all;
}
a:hover {
	text-decoration:none;
}
a:hover,
a:active,
a:visited,
a:focus,
button:hover,
button:active,
button:visited,
button:focus {
	outline: 0;
	border: none;
	background-color: transparent;
	box-shadow: none;
	text-decoration: none;
}

a.no-decoration {
	text-decoration: none;
}

.btn {
	font-size: 1.6rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--charcoal);
	border-radius: 1rem;
	font-weight: bold;
	text-decoration: none;
	white-space: nowrap;
	height: min-content;
}

/*------------------------------------*\
    FORMS
\*------------------------------------*/

input:focus {
	outline:0;
	border:1px solid #003D47;
}

input[type=text], input[type=textarea], input[type=email], input[type=password] {
	padding:1rem;
	background-color:#fff;
	border-radius: 1rem;
	border:1px solid var(--light-blue);
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

main {
	padding-top: 11rem;
}

.block {
	width:100%;
	position: relative;
}

.wrapper {
	max-width: 1728px;
	width: 90%;
	margin: 0 auto;
	position: relative;
}

.logo {
	width: 100%;
	height: auto;
}
.logo img {
	height: auto;
	width: 100%;
}

#header {
	position: fixed;
	background: transparent;
	padding: 2rem 2rem 0;
	width: 100vw;
	top:0;
	left: 0;
	z-index: 99;
	height: 11rem;
	transition: 0.5s background-color;
}

.outer-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.5rem;
	
}
.burger .outer-nav {
	border-bottom: 1px solid;
}
.mob-nav.nav {
	top: 10rem;
	left: 0;
	width: 100%;
	height: 80vh;
	padding: 2rem 0;
	opacity: 0;
	pointer-events: none;
	transition: 0.5s opacity;
	z-index: 99;
}
.burger #header {
	background-image: none;
}
.burger .mob-nav.nav {
	opacity: 1 !important;
	pointer-events: all !important;
}
.burger .bg {
	z-index: 90;
}
.nav-menu {
	height: 100%;
}
.nav-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	height: 100%;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}
.nav-menu li {
	margin:0 1rem;
	text-align: center;
	width: 100%;
}

.nav-menu li:first-child {
	transform: rotate(10deg) translate(-6rem, 2rem);
}
.nav-menu li:nth-child(2) {
	transform: rotate(-10deg) translate(4rem, 0rem);
}
.nav-menu li:nth-child(3) {
	transform: rotate(-20deg) translate(-6rem, -2rem);
}
.nav-menu li:nth-child(4) {
	transform: rotate(-4deg) translate(3rem, -4rem);
}
.nav-menu li:nth-child(5) {
	transform: rotate(15deg) translate(3rem, -4rem);
}
.nav-menu li:nth-child(6) {
	transform: rotate(-10deg) translate(-6rem, -6rem);
}
.nav-menu li:nth-child(7) {
	transform: rotate(-16deg) translate(5rem, -6rem);
}

.nav-menu a {
	font-size: 2.2rem;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100lvh;
	max-width: 100vw;
}

.bg video, .bg-img, .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

*::-webkit-media-controls-start-playback-button, *::-webkit-media-controls-play-button, *::-webkit-media-controls-panel {
   display:none !important;
   visibility: hidden!important;
   opacity: 0 !important;
  -webkit-appearance: none !important;
}

video::slotted::-webkit-media-controls-container{
      display:none !important;
      visibility: hidden!important;
      opacity: 0 !important;
     -webkit-appearance: none !important;
    }

/*------------------------------------*\
    Hamburger
\*------------------------------------*/

.hamburger {
  padding: 15px 0 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 1px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

.footer {
	font-size: 1.2rem;
}

.gmap iframe {
	max-width: 100%;
}

.socials {
	display: flex;
}
.socials img {
	width: 4rem;
	height: auto;
	margin-right: 1rem;
}

.footer a {
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
}

.footer-nav ul {
	list-style-type: none;
	padding: 0;
}

.footer-nav li {
	margin-bottom: 1rem;
}

/*------------------------------------*\
    Colors
\*------------------------------------*/

.text-white {
	color: var(--white);
}
.text-black {
	color: var(--charcoal);
}
.text-red {
	color: var(--red);
}

.dark {
	background-color: var(--charcoal);
	color: var(--white);
}
.light {
	background-color: var(--white);
	color: var(--charcoal);
}

.bg-white {
	background-color: #fff;
}

/*------------------------------------*\
	MISC
\*------------------------------------*/

::selection {
	background: var(--red);
	color: var(--charcoal);
	text-shadow: none;
}
::-webkit-selection {
	background: var(--red);
	color: var(--charcoal);
	text-shadow: none;
}
::-moz-selection {
	background: var(--red);
	color: var(--charcoal);
	text-shadow: none;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

p {
	margin: 1rem 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
	margin:1rem 0;
	line-height: 0.8;
	font-weight: bold;
}

h1, .h1 {
	font-size: 3.6rem;
}

h2, .h2 {
	font-size: 2.6rem;
}

h3, .h3 {
	font-size: 2.2rem;
}
h4, .h4 {
	font-size: 1.5rem;
}
h5, .h5 {
	font-size: 1.2rem;
}

.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}

.text-upper {
	text-transform: uppercase;
}

.fw-normal {
	font-weight: normal;
}

.wide {
	letter-spacing: 4px;
}

@font-face {
  font-family: 'Pitch Sans';
  src: url('./fonts/pitch-sans.woff2') format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pitch Sans';
  src: url('./fonts/pitch-sans-bold.woff2') format("woff2");
  font-weight: bold;
  font-style: normal;
}

/*------------------------------------*\
    Spacing and Grid
\*------------------------------------*/

.w100 {
	width: 100%;
}

.py2 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.p4 {
	padding: 4rem;
}
.py4 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.pt4 {
	padding-top: 4rem;
}
.pb4 {
	padding-bottom: 4rem;
}
.py4 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.my2 {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.mb2 {
	margin-bottom: 2rem;
}
.mt2 {
	margin-top: 2rem;
}
.mt4 {
	margin-top: 4rem;
}

.row {
	width: calc(100% + 2rem);
	margin-left: -1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.col {
	position: relative;
	padding: 0 0.5rem;
	width: 100%;
}

.col.third {
	width: 33.33%;
}

/*------------------------------------*\
    Blocks
\*------------------------------------*/

.header-img img, .intro-img img {
	height: auto;
}

.intro svg {
	width: 6rem;
	height: auto;
}

.intro video {
	min-height: 18rem;
}

.food-drink-title {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 4rem;
}

.light svg path.svg-text {
	fill: var(--charcoal);
}

.dark svg path.svg-text {
	fill: var(--white);
}

.light svg path.svg-outline {
	stroke: var(--charcoal);
}

.dark svg path.svg-outline {
	stroke: var(--white);
}

.light .close-menu-section svg path {
	stroke: var(--charcoal);
}

.dark .close-menu-section svg path {
	stroke: var(--white);
}

.dark .menu-title .text-red {
	color: var(--white);
}

.menu-section {
	margin-bottom: 4rem;
}
.menu-title {
	position: relative;
	line-height: 0.8;
	font-size: 2.2rem;
	font-weight: bold;
	width: max-content;
	display: block;
	margin: 0 auto;
	transition: 0.5s transform;
}

.close-menu-section {
	position: absolute;
	opacity: 0;
	transition: 0.5s opacity;
	right: -2rem;
	top: 0;
}

.menu-content-inner {
	font-size: 1.2rem;
	overflow: hidden;
}

.open .menu-content-inner {
	transition: 1s height;
}

.open .close-menu-section {
	opacity: 1;
}

.menu-section:nth-child(n) .menu-title {
	transform: rotate(-10deg) translate(-6rem, 0rem);
}
.menu-section:nth-child(2n) .menu-title {
	transform: rotate(15deg) translate(6rem, -1rem);
}
.menu-section:nth-child(3n) .menu-title {
	transform: rotate(-20deg) translate(-7rem, -4rem);
}
.menu-section:nth-child(4n) .menu-title {
	transform: rotate(5deg) translate(6rem, -5rem);
}
.menu-section:nth-child(5n) .menu-title {
	transform: rotate(-4deg) translate(-7rem, -6rem);
}
.menu-section:nth-child(6n) .menu-title {
	transform: rotate(-12deg) translate(5rem, -6rem);
}
.menu-section:nth-child(7n) .menu-title {
	transform: rotate(6deg) translate(-5rem, -4rem);
}

.menu-section:nth-child(n).open .menu-title {
	transform: rotate(0) translate(0, 0rem);
}
.menu-section:nth-child(2n).open .menu-title {
	transform: rotate(0) translate(0, -1rem);
}
.menu-section:nth-child(3n).open .menu-title {
	transform: rotate(0) translate(0, -1rem);
}
.menu-section:nth-child(4n).open .menu-title {
	transform: rotate(0) translate(0, -2rem);
}
.menu-section:nth-child(5n).open .menu-title {
	transform: rotate(0) translate(0, -4rem);
}
.menu-section:nth-child(6n).open .menu-title {
	transform: rotate(0) translate(0, -3rem);
}
.menu-section:nth-child(7n).open .menu-title {
	transform: rotate(0) translate(0, -4rem);
}

.image-grid .col {
	margin-bottom: 1rem;
}

.image-grid img {
	height: 12rem;
	object-fit: cover;
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

.hfs {
	display: none;
}

@media (orientation: landscape) {

	html {
		font-size: 1vw;
	}

	body {
		overflow-x: clip;
	}

	.bg {
		height: 100vh;
	}

	.sfs {
		display: none;
	}
	.hfs {
		display: block;
	}

	#header {
		padding: 2rem 6rem 2rem;
		position: sticky;
		top: -12.2rem;
		height: 18rem;
	}

	.dt-nav {
		display: flex;
		align-items: center;
	}

	.logo {
		margin-bottom: 1rem;
	}

	.dt-nav .nav {
		width: 100%;
	}

	.dt-nav ul {
		display: flex;
		list-style-type: none;
		justify-content: space-between;
		padding-left: 4rem;
		width: 100%;
		margin: 0;
	}

	.dt-nav a {
		text-decoration: none;
	}

	.dt-nav a:hover {
		text-decoration: underline;
	}

	main {
		padding-top: 0;
	}

	.col.half {
		width: 50%;
	}

	.col.third {
		width: 25%;
	}

	h1, .h1 {
		font-size: 4rem;
	}

	.intro svg, #footer svg {
		width: 8rem;
		height: auto;
	}

	.intro .col:first-child {
		order: 1;
		padding: 0 6rem;
	}

	.intro .col {
		font-size: 1.2rem;
	}

	.intro .col strong {
		font-size: 1.6rem;
	}

	.food-drink-title a {
		position: absolute;
		right: 6rem;
		width: 8rem;
	}

	.food-drink a svg {
		width: 100%;
		height: auto;
	}

	.menu-title {
		width: max-content;
	}

	.menu-section:nth-child(odd) .menu-title {
		margin-left: 35%;
		margin-right: auto;
	}

	.menu-section:nth-child(even) .menu-title {
		margin-right: 35%;
		margin-left: auto;
	}

	.menu-section:nth-child(6n) .menu-title {
	    transform: rotate(15deg) translate(-1rem, -7rem);
	}

	.menu-section:nth-child(7n) .menu-title {
	    transform: rotate(-20deg) translate(1rem, -8rem);
	}

	.open .menu-title {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.block.image-grid {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}

	.image-grid img {
	    height: 28rem;
	}

	.block.promo .wrapper {
		width: 50%;
	}

	#footer .row {
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-col {
		width: 30%;
	}

	.socials img {
		width: 3rem;
	}

	#footer svg {
		margin-top: 4rem;
	}

}

@media (min-width: 1921px) {
	html {
		font-size: 19px;
	}
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.block-editor-block-list__block {
	width: 80%;
	max-width: 1440px;
}

.block

.block-editor-block-list__block.acf-block-preview {
	zoom:0.5;
}
html .mceContentBody {
    font-size: 18px;
    padding:10px;
}
html .mceContentBody p {
	margin: 16px 0;
	font-size: 14px;
	line-height: 1.1;
}
.editor-styles-wrapper a {
	text-decoration: none;
}
.editor-styles-wrapper input[type=text], .editor-styles-wrapper input[type=textarea], .editor-styles-wrapper input[type=email], .editor-styles-wrapper input[type=password] {
	border-radius: 4px;
	border: 1px solid #8c8f94;
}

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}