@charset "utf-8";
/* CSS Document */
html,
body {
	margin: 0;
	padding: 0;	
}

@font-face {
    font-family: 'krabby_patty';
    src: url('../font/krabby_patty.ttf') format('truetype');

 }

body {
	font-family: 'Roboto', sans-serif;
}

header {
	z-index: 999;
	height: 60px;
	width: 100%;
	background-color: black;
	position: fixed;
	top: 0;
	left: 0;

}

header a {
	float: left;
	margin-left: 20px;
	margin-top: 10px;
}

nav ul{
	width: 700px;
	margin: 0 auto;
}


nav ul li{
	float: left;
	list-style-type: none;

}

nav li a {
	text-decoration: none;
	color: #f0f0f0; 
	line-height: 40px;
	display: block;
	width: 150px;
	float: left;
	text-align: center;

	font-size: 1.2em;
}

nav li a:hover {
	color: #FFFF3B;
} 

/* parallax */

.first_box {
	position: relative;
	height: 1034px;
	background: url(../images/bg_banner.png);
	background-size: cover;
	background-position: top center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	overflow: hidden;
}

.header {
	position: absolute;
	height: 130px;
	width: 100%;
	background: url(../images/header.png);
	background-position: center;
	background-repeat: no-repeat;
	top: 50%;
}

.forehand {
	position: fixed;
	height: 1034px;
	width: 100%;
	background: url(../images/forehand.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	top: 300px;
}

.jellyfish {
	width: 100%;
	height: 365px;
	background: url(../images/jellyfish.png);
	background-repeat: no-repeat;
	background-position: top right;
	position: fixed;
	left: 30%;
	margin-left: -480px;
	top: 380px;
}

/* main content*/
.box h2 {
	margin: 0;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	padding-top: 32px;
}

.box h3 {
	font-family: 'krabby_patty', sans-serif;
	font-size: 3em;
	letter-spacing: 3px;
	color: #FFFF3B;
	 text-shadow: 0 0 3px #000, 0 0 5px #fff;
}

.box-02,
.box-06 {
	height: 30px;	
	background-color: #FFFF3B;
}


.box-03, 
.box-04,
.box-05 {
	position: relative;
	background-size: cover;
	background-attachment: fixed;
	background-image: url(../images/bubbles.jpeg);	
}

.box-03 {
	height: 500px;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    
}

.spongeBob img{
	position: absolute;
	top: 180px;
	left: 170px;
}

.patrick img {
	position: absolute;
	top: 180px;
	right: 170px;	
}


.box-04,
.box-05 {
	height: 1000px;

}

.text {
	width: 800px;
	margin: 0 auto;
	padding-top: 50px;
}


.box p{
	line-height: 1.4;
	color: #f0f0f0;
	font-size: 1.4em;padding-bottom: 20px;
}

.items {
	display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    width: 60%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 250px;

}

.items img {
	width: 200px;
	height: 200px;
	margin-left: 20%;
	border-radius:100px / 50px;
} 

.items h2 {
	color: #FFFF3B;
	font-size: 1.5em;
}

.items p {
	font-size: 1.2em;
}

.item {
	width: 30%;
}


/*-- booking style --*/

.booking {
	background-image: url(../images/bg_form.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 80px;
	height: 1000px;
}

form {
	width: 400px;
	height: 830px;
	margin: 0 auto;
	border: 7px solid #3DBDC2;
	box-shadow: 0px 0px 0px 7px #ffff99;
    border-radius: 50px;
    padding: 30px;

}

form h1 {
	text-align: center;
	font-family: 'krabby_patty', sans-serif;
}

fieldset {
	border: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
	display: block;
	width: 350px;
	height: 35px;
	margin-bottom: 15px;	
	background-color: #f0f0f0;
	border-radius: 7px;
	border: 3px solid transparent;
	font-size: 12px;
}

input[type="telnumber"] {
	margin-bottom: 35px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="telnumber"]:focus,
textarea:focus {
	outline: none;
	border: 3px solid #A1F480;
}


select {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 160px;
	font-size: 13px;
  	border: 1px solid #3DBDC2;
  	background-color: #f0f0f0;
  	background-image: url(../images/arrows.png);
  	background-repeat: no-repeat;
  	background-position: right;
  	padding: 5px;
  	font-family: 'Roboto', sans-serif;
  	margin-left: 10px;
}

select:focus {
	outline: none;
	border: 3px solid #A1F480;
}

input[type="radio"] {
	float: none; 
	width: auto;
	display: inline;
}

.duration {
	margin-top: 20px;
	margin-bottom: 20px;
}

.duration label {
	margin-right: 15px;
}

form:nth-child(4) {
	margin-top: 20px;

}

textarea {
	display: block;
	width: 350px;
	height: 100px;
	margin-top: 0; 	
	margin-bottom: 10px;
	background-color: #f0f0f0;
	border-radius: 7px;
	border: 3px solid transparent;
}

.button {
	width: 400px;
	background-color: #3DBDC2;
	border: 3px solid transparent;
	height: 50px;
	border-radius: 10px;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	margin: auto;
	margin-top: 30px;
}

.button:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

footer {
	text-align: center;
	color: #304163;
	letter-spacing: 2px;
	font-size: 13px;
	height: 70px;
	margin: 0;
	padding-top: 10px;
}


footer a {
	color: #304163;
	margin: 0;
	line-height: 10px;
}

footer a:hover {
	color: #FC5185;
}


/* thank you page */
.thankyou_bg {
	background-image: url(../images/bubbles.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;

}

main {
	width: 960px;
	height: 600px;
	margin: 100px auto;
	background-color: rgba(255,255,255,0.2);
	
}

main h1 {
	font-family: 'krabby_patty', sans-serif;
	color: #FFFF3B;
	text-align: center;
	padding-top: 100px;
	font-size: 3em;
}

main h2 {
	color: #f0f0f0;
	text-align: center;
	font-size: 1.5em;
}
 
.gary_image {
	position: absolute;
	top: 423px;
	left: 546px;
}

ul.credits {
	list-style-type: circle;
	color: #fff;
	margin-left: 200px;
	margin-top: 50px;
}

.credits a{
	color: #fff;
	line-height: 1.5;

}

