@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Caveat:400&display=swap");

@font-face {
  font-family: "aaaiight";
  src: url('/assets/fonts/aaaiight.ttf') format('truetype');
}

:root {
  --background: #0c0c0c;
  --backgroundFaint: #1b1919;
  --white: #ffffff;
  --whiteDim: #dadada;
  --highlight1: #d51616;
  --highlight1Dim: #871c1c;
}
/* remove base styling from doc */
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

/* assign the font */
body {
  font-family: "Montserrat";
  background-color: var(--background);
}

h3{
  font-family: "Caveat";
  color: var(--white);
  font-size: 4em;
  font-weight: 300;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: left;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-top-style: solid;
  border-top-width: 2px;
  text-indent: 20px;
  text-transform: uppercase;
}

h4{
  color: var(--white);
    font-size: 1.5em;
    font-weight: 400;
    margin-top: 20px;
}

h5{
  color: var(--white);
    font-size: 1.15em;
    font-weight: 400;
    margin-top: 20px;
}

section.primarybody p {
  margin-left: 10px;
}

section.primarybody {
  margin-left: 30px;
}

p{
	color: var(--white);
  font-weight: 200;
}

p.rightPad{
  padding-right: 10vw;
}

p a{
  color: var(--highlight1);
  transition: 0.3s;
}

p a:hover{
  color: var(--highlight1Dim);
  transition: 0.3s;
}

section.headersection{
        width: 100vw;
        height: 60vh;
        position: relative;
        background-size: cover;
        background-color: black;
}

section.headersection h2{
  font-family: "Caveat";
        background-color: var(--backgroundFaint);
        color: var(--white);
        text-align: center;
        font-size: 1.5em;
        font-weight: 300;
	      width: fit-content;
        padding: 5px;
        padding-left: 20px;
        padding-right: 20px;
        position: absolute;
        left: 0%;
        top: 75px;
        transform: translate(0%, 0%);
}

section.headersection ul{
	position: absolute;
	left: 7.5%;
	top: 125px;
	transform: translate(0%, 0%);
}

section.headersection ul li {
	padding: 10px;
}

section.headersection ul li a {
	color: var(--white);
	text-decoration: none;
	text-align: center;
	font-size: 0.85em;
	font-weight: 300;
}

section.headersection ul li a:hover {
	text-decoration: underline;
}

a.primaryButton{
  border: 0 solid #ffffff;
    background-color: var(--background);
    padding: 5px 10px;
    width: fit-content;
    font-size: 2em;
    color: var(--white);
    cursor: pointer;
    vertical-align: middle;
    transition: 0.3s;
}

a.primaryButtonRed{
  background-color: var(--highlight1);
}

a.primaryButton:hover {
  background-color: var(--backgroundFaint);
  color: var(--whiteDim);
  transition: 0.3s;
}
a.primaryButtonRed:hover {
  background-color: var(--highlight1Dim);
}

section.map{
  position: relative;
  width: 100vw;
  margin-top: 50px;
  
}

section.map iframe{
  width: 100vw;
}

section.bookings{
  margin-top: 50px;
  margin: auto;
  width: 90%;
}

.error{
  color: var(--white);
  text-decoration: underline;
  font-weight: bolder;
  margin-top: 10px;
}

.timetable{
  width: 90vw;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 20px;
}

.invite + p{
    text-align: center;
    margin-bottom: 20px;
}

.preventSelect {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

/* media query for sizing down to phones and tablet */
@media only screen and (max-width: 849px) {

  h3 {
      font-size: 3em;
    }
	
	.invite{
        width: 100vw;
        height: calc(100vw * 1.41843972);
    }

}