:root{
	--pink:#ffe1e;
}

*{
	margin: 0; padding: 0;
	box-sizing: border-box;
	font-family: 'Dosis'; sans-serif;
	outline: none; border: none;
	text-decoration: none;
	transition: .2s linear;
}

link{
	display: none;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

section{
	padding:2rem 9%;
}

.heading{
	text-align: center;
	font-size: 4rem;
	color: #3fa19f;
	padding: 1rem;
	margin: 2re, 0;
	background: #E8D1CD;
}

.heading span{
	color: #f09f9c;
}

.btn{
	display: inline-block;
	margin-top: 1rem;
	border-radius: 5rem;
	background: #3fa19f;
	color: #fff;
	padding: .9rem 3.5rem;
	cursor:pointer;
	font-size: 1.7rem;
}

.btn:hover{
	background:#f09f9c ;
}

header{
	position: fixed;
	top: 0; left: 0; right: 0;
	background: #fff;
	padding: 2rem 9%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

header .img/logo.png{
	width: 80%;
}

header .navbar a{
	font-size: 2rem;
	padding: 0 1.5rem;
	color: #666;
}

header .navbar a:hover{
	color:#f09f9c;
}

header .icons img{
	height: 25px;
	margin-left: 2rem;
	cursor: pointer;
}

header .icons img:hover{
	color: #f09f9c;
}

header #toggler{
	display: none;
}

header .fa-bars{
	font-size: 3rem;
	color: #333;
	border-radius: .5rem;
	padding:.5rem 1.5rem;
	cursor: pointer;
	border:.1rem solid rgba(0, 0, 0, .3);
	display: none;
}

body{
	background-image: url(img/bg_mamina.jpg);
	background-position: center;
	background-size: cover;
}

.Form .box-container{
	flex-wrap: wrap;
	gap:1.5rem;
}

.Form .box-container .box{
	flex: 1 1 30rem;
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .5);
	border-radius: .5rem;
	border: .1rem solid rgba(0, 0, 0, .1);
	position: relative;
	background-color: rgb(255, 255, 255, .9);
}

.Form h3{
	font-size: 20px;
	color: #000;
	line-height: 1.5;
	border-color: #ddd;
	text-align: center;

}
.Form p{
	text-align: center;
	font-size: 15px;
	color: #333;
	line-height: 1.5;
	font-weight: bold;
	background-color: #ffeded;
}

span{
	color: #A83333;
}

.form_reservasi{
	background-color: rgb(255, 182, 193, .5);
	margin: auto;
	
}

.input_field{
	margin-bottom: 15px;
	align-items: center;
	display: flex;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.input_field label{
	width: 200px;
	color: #000;
	margin-right: 10px;
	font-size: 18px;
	font-weight: bold;
}

.input_field .input,
.input_field .textarea{
	width: 50%;
	outline: none;
	border: 1px solid #d5dbd9;
	font-size: 15px;
	padding: 8px 10px;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.input_field .textarea{
	resize: none;
	height: 125px;
}

.input_field .custom_select{
	position: relative;
	width: 100%;
	height: 37px;
}

.input_field .custom_select select{
	border: 1px solid #d5dbd9;
	appearance: none;
	-webkit-appearance:none;
	width: 50%;
	height: 100%;
	padding: 8px 10px;
	border-radius: 3px;
	font-size: 15px;
}

.footer{
	background-color: #fff;
}
.footer .box-container{
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer .box-container .box{
	flex: 1 1 25rem;
}

.footer .box-container .box h3{
	color: #333;
	font-size: 2.5rem;
	padding: 1rem 0;
}

.footer .box-container .box a{
	display: block;
	color: #666;
	font-size: 1.5rem;
	padding: 1rem 0;
}

.footer .box-container .box a:hover{
	color: #f09f9c;
	text-decoration: underline;
}

.footer .credit{
	text-align: center;
	padding: 1.5rem;
	margin-top: 1.5rem;
	padding-top: 2.5rem;
	font-size: 2rem;
	color: #333;
	border-top: .1rem solid rgba(0, 0, 0, .1);
}

.footer .credit span{
	color: #3fa19f;
}





















































































/*media queries */
@media (max-width:991px){

	html{
	font-size: 55%;
	}

	header{
		padding: 2rem;
	}

	section{
		padding: 2rem;
	}

	.Home{
		background-position: left;
	}
}

@media (max-width:768px){

	header .fa-bars{
		display:block;
	}

	header .navbar{
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #eee;
		border-top: .1rem solid rgba((0), 0, 0, .1);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	header #toggler:checked ~ .navbar{
		clip-path:polygon(0 0,100% 0, 100% 100%, 0% 100%);

	}

	header .navbar a{
		margin: 1.5rem;
		padding: 1.5rem;
		background: #fff;
		border: .1rem solid rgba(0, 0, 0, .1);
		display: block;
	}

	.Home .content h1{
		font-size: 90px;
	}

	.Home .content h3{
		font-size: 25px;
	}
}

@media (max-width:450px){

	html{
	font-size: 50%;
	}

	.heading{
		font-size: 3rem;
	}

}