/* styles for the page itself */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

body {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  background: #eee;
  height: auto;
}

h1 {
  font-weight: 400;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0;
}

h2 {
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: capitalize;
  margin: 0;
}

img {
  display: block;
  width: 100%;
}

main {
  max-width: 900px;
  margin: auto;
  box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.1),
    -30px 0px 40px rgba(0, 0, 0, 0.1);
}

#landing {
  background: #fff;
}

#landing-text {
  display: flex;
  flex: 0 1 40vw;
  height: 60vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
}

#landing-text h2 {
  color: #888;
}

#landing-image {
  background: url(/assets/img/intro.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  flex: 0 1 60vw;
  margin: 0;
}

.btn {
  padding: 0.5rem 2rem;
  border: 1px #ccc solid;
  display: inline-block;
  margin: 2rem 0 0;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  transition: background 500ms ease;
}

.btn:hover {
  background: #f4f4f4;
}

#header {
  padding: 1.5rem;
  text-align: center;
  background: #333;
  color: #fff;
}

#header h2 {
  border-left: dotted 1px #fff;
  border-right: dotted 1px #fff;
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
}

.caption {
  padding: 0.8rem;
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  margin: auto;
  color: #333;
}

footer h3 {
  font-size: 3rem;
  margin-bottom: 0;
}

/* some styles for swiper */
.swiper-container {
	max-width: 600px;
}

/* Screen Sizes 500px and Up */
@media (min-width: 500px) {
  #landing {
    display: flex;
    height: 100%;
  }

  #landing-text {
    height: 100vh;
  }

  #landing-image {
    height: 100vh;
  }
}

/* Screen Sizes 700px and Up */
@media (min-width: 700px) {
  .btn {
    padding: 1rem 3rem;
  }
}

/* some custom styles */
#landing-text-inner h1 {
    font-weight: 600;
}

#landing-text-inner h1 img {
	width: 100px;
    margin: auto;
}

.btn {
	margin: 1rem 0 0;
	display: block;
}

#cyclorama1 .caption p,
#cyclorama2 .caption p,
#dressing-room .caption p {
	margin-top: 0;
	margin-bottom: 5px;
}

#video-tour .video-tour-container {
    margin-left: auto;
    margin-right: auto;
    width: 315px;
}
#video-tour .video-tour-container iframe {
    border: none;
}

#hall1 img {
	width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.booking-container {
	text-align: center;
}

.booking-container .btn {
	background-color: #7fffd4;
}
.booking-container .btn:hover {
	background: #72eac2;
}

.equipment {
	width: 50%;
	min-height: 295px;
	float: left;
}

.equipment.clear-left {
	clear: left;
}

.equipment img {
	width: 50%;
	position: relative;
    margin: auto;
}

.equipment .description {
	text-align: center;
	width: 75%;
    margin: auto;
}

.equipment .description h4 {
	margin-top: 0;
	margin-bottom: 10px;
}

.equipment .description p {
	margin-top: 0;
	margin-bottom: 0;
}

.clearfix::after { 
   content: " ";
   display: block; 
   height: 0; 
   clear: both;
}

#contact {
	max-width: 900px;
}

#contact h4 {
    font-size: 24pt;
    margin-bottom: 20px;
    margin-top: 14px;
}

#contact div {
	float: left;
}

#contact div p {
	float: left;
	clear: both;
	margin-top: 5px;
    margin-bottom: 5px;
}

#contact div p i {
	width: 20px;
}

#contact a {
	transition: color 0.5s ease;
	color: #333;
	text-decoration: none;
}
#contact a:hover {
	color: #72eac2;
}

#contact iframe {
	width: 55%;
	height: 250px;
	border: 0;
	float: right;
    margin-bottom: 20px;
}

#rules {
	padding: 0 40px 40px 40px;
}
#rules .container .dots {
    position: absolute;
    margin-left: 40px;
    margin-top: -20px;
}

#readMore {
	transition: color 0.5s ease;
	cursor: pointer;
	margin-left: 38px;
}
#readMore:hover {
	color: #72eac2;
}

#readMore .more {
	line-height: 34pt;
}
#readMore .more:after {
	content: '\25bc';
	padding-left: 0.5em;
}

#readMore .less {
	line-height: 34pt;
}
#readMore .less:after {
	content: '\25b2';
	padding-left: 0.5em;
}

/* Screen Sizes 500px and Up */
@media (max-width: 900px) {
	#contact div {
		float: unset;
	}

	#contact div p {
		float: unset;
	}
	
	#contact iframe {
		margin-top: 20px;
		width: 100%;
	}
}

@media (max-width: 420px) {
	.btn {
		margin: 0.8rem 0 0;
		padding: 0.4rem 4rem;
	}
}

@media (max-width: 380px) {
	.btn {
		margin: 0.6rem 0 0;
		padding: 0.3rem 3rem;
	}
}

@media (max-width: 330px) {
	#landing-text-inner h1 {
		font-size: 2rem;
	}

	#landing-text-inner h1 img {
		width: 75px;
	}

	h2 {
		font-size: 1rem;
	}

	.btn {
		margin: 0.2rem 0 0;
		padding: 0.2rem 2rem;
	}

	.equipment {
		min-height: 245px;
	}
}

@media (min-width: 900px) {
	.equipment {
		margin-bottom: 20px;
	}
}
