@import url('https://fonts.googleapis.com/css2?family=Imbue:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rokkitt:wght@100;200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@100;200;300&display=swap');

body{
	height: 100vh;
}

*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family:  'Poppins', sans-serif;
}

.wrapper{
	min-height: 100%;
	padding: 0 10%;
	position: relative;
	background-color: rgba(66,44,29,0.4)
}
.wrapper:before{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background-image: url(img/background.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

}
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;

}

.logo{
	height: 100%;
}
.logo img{
	height: 100%;

}

.nav-links{
	list-style: none;
}
.nav-links li{
	display: inline-block;

}

.nav-links li a{
	text-decoration: none;
	color: #f5f4ee; /*White ish color. Some yellow and a bit darker. */
	font-size: 24px;
	padding: 25px;
}

.nav-links li a:hover{
	color: rgba(43, 28, 11,0.5);
}


header .contact-button{
	font-size: 19px;
	background:transparent;
	border-style: none;
	border:2px solid #f5f4ee;
	border-radius: 15px;
	padding: 2px 12px;
	color: #f5f4ee;
	outline: none;

}
header .contact-button:hover{
	cursor: pointer;
	background:rgba(43, 28, 11,0.3);
}

.home-content{
	display: flex;
	align-items: center;

}


.home-text h1,p{
	color: #f5f4ee;
}
.home-text h1{
	font-size: 7vw;
	font-family: 'Imbue', serif;
	margin-top: 200px;
}
.home-text p{
	margin-top: 10px;
	font-weight: 100;
	font-size: 1.7vw;
	font-family:  'Arima Madurai', cursive;
}

.hamburger{
	width: 35px;
	height: 35px;
	cursor: pointer;
	display: none;
	z-index: 5;

}
.hamburger .hamburger-top, .hamburger-middle, .hamburger-bottom{
	width: 100%;
	background-color: #f5f4ee;
	height: 4px;
	margin: 5px 0;
	border-radius: 2px;
}
#toggle{
	display: none;
}


#toggle:checked + .hamburger .hamburger-top{
	transform: rotate(-45deg);
	margin-top: 16px;
}
#toggle:checked + .hamburger .hamburger-middle{
	transform: rotate(45deg);
	margin-top: -8px;
}
#toggle:checked + .hamburger .hamburger-bottom{
	display: none;
}
#toggle:checked + .hamburger + .ham-nav-wrapper{
	top: 0;
}

.ham-nav-wrapper{
	position: fixed;
	z-index: 4;
	height: 100%;
	width: 100%;
	background-color: rgba(30,30,30,0.8);
	left: 0;
	right: 0;
	top: -100%;
	bottom: 0;
}
.ham-nav{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	height: 100%;
}
.ham-nav a{
	text-decoration: none;
	color: #f5f4ee;
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	letter-spacing: 3px;
}
.ham-nav a:hover{
	color:#b16b02;
}




/*

==========================
		PRODUCT PAGE
==========================

 */



.product-page-text{
	max-width: 1200px;
	margin: 0 auto;
	display: block;
}
.product-page-text h2, p{
	color: #f5f4ee;
}

.product-page-text h2{
	font-size: 70px;
	font-family: 'Imbue', serif;
	margin-top: 200px;
	font-weight: 600;
	letter-spacing: 2px;
}

.product-page-text p{
	margin-top: 10px;
	font-weight: 300;
	font-size: 20px;
	font-family:  'Arima Madurai', cursive;
	margin-bottom: 70px;
}


.product-tbl{
	width: 100%;
	min-height: 500px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 50px;
	max-width: 1200px;
	margin: 0 auto;
}
.product{
	width: 290px;
	height: 400px;
	background-color: rgba(35, 22, 0,0.5);
	border-radius: 20px;
	text-align: center;
	color: #f5f4ee;
	margin: 20px 10px;
	box-shadow: 1px 5px 5px 2px #1d1105bd;
}
.product h4{
	font-family: 'Imbue', serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 4px;
	margin: 0;
}
.product p{
	font-family:  'Arima Madurai', cursive;
	font-size: 16px;
	font-weight: 100;
}

.beer{
	height: 75%;
	margin: 0 auto;
	display: block;
	margin-top: 10px;
}


/*

==========================
		ABOUT PAGE
==========================

*/

.about-org-text{
	max-width: 1000px;
	margin: 0 auto;
	color: #f5f4ee;
	margin-bottom: 110px;
}

.about-org-text h2{
	font-size: 70px;
	font-family: 'Imbue', serif;
	margin-top: 150px;
	font-weight: 600;
	letter-spacing: 2px;
}

.about-org-text p{
	font-family:  'Arima Madurai', cursive;
	font-size: 16px;
	font-weight: 500;
	margin-top: 10px;

}


.about-product-h{
	max-width: 1000px;
	margin: 0 auto;
	color: #f5f4ee;
	border-bottom: 3px solid #f5f4ee;

}
.about-product-h h2{
	font-size: 45px;
	font-family: 'Imbue', serif;
	font-weight: 500;
	letter-spacing: 2px;
}




.about-product-parent{
	max-width: 1000px;
	margin: 0 auto;

}

.about-product{
	display: flex;
	margin: 60px 0;
	justify-content: space-around;
	align-items: center;
	color: #f5f4ee;
	flex-wrap: wrap;


}
.about-text{
	min-width: 300px;
	max-width: 600px;

}
.about-text p{
	font-family:  'Arima Madurai', cursive;
	font-size: 16px;
	font-weight: 400;
}
.about-text h3{
	font-family: 'Imbue', serif;
	font-size: 38px;
	font-weight: 600;
	letter-spacing: 4px;

}


.about-img{
	margin: 0 20px;
}
 .about-img img{
	width: 270px;
	border-radius: 10px;
	box-shadow: 1px 5px 5px 2px #1d1105bd;
}


/*

==========================
		CONTACT PAGE
==========================

*/



.contact-window{
	width: 80%;
	margin: 0 auto;
	color: #f5f4ee;
	min-height: 50vh;
	max-width: 800px;
	text-align: center;
	min-width: 250px;
	margin-top: 90px;
}


.contact-window h2{
	font-size: 55px;
	font-family: 'Imbue', serif;
	font-weight: 500;
	letter-spacing: 2px;
	padding: 5px;
	padding-top: 20px;
}

.contact-window p{
	font-family:  'Arima Madurai', cursive;
	font-size: 16px;
	font-weight: 400;
	width: 93%;
	margin: 0 auto;
	margin-top: 10px;
}

.contact-info{
	display: flex;
	justify-content: space-around;
	width: 95%;
	margin: 0 auto;
	flex-wrap: wrap;
	text-align: center;
	margin-top: 30px;

}
.contact-info input{
	width: 45%;
	outline: none;
	padding: 1.5vh 1%;
	font-size: 15px;
	border-style: none;
	background-color: rgba(35, 22, 0,0.5);
	color: #f5f4ee;
	border-radius: 10px;
	min-width: 200px;
	border: 1px solid #f5f4ee;
	font-family:  'Arima Madurai', cursive;
	margin: 10px;
}
.contact-info input::placeholder{
	color: #f5f4ee;
	
}

.contact-message{
	width: 100%;
	text-align: center;
}

.contact-message textarea{
	outline: none;
	width: 90%;
	height: 20vh;
	padding: 1vh 1%;
	font-size: 15px;
	border-style: none;
	background-color: rgba(35, 22, 0,0.5);
	color: #f5f4ee;
	border-radius: 10px;
	max-width: 95%;
	min-width: 200px;
	border: 1px solid #f5f4ee;
	font-family:  'Arima Madurai', cursive;
	margin:10px;
}

.contact-message textarea::placeholder{
	color: #f5f4ee;
}

.sp{
	margin: 0 auto;
}

.contact-window button{
	border-style: none;
	outline: none;
	font-size: 20px;
	background:none;
	cursor: pointer;
	color: #f5f4ee;
	font-weight: 200;
	border: 1px solid #f5f4ee;
	border-radius: 10px;
	width: 120px;
	letter-spacing: 3px;
	margin-bottom: 20px;
	transition: all ease 0.5s;
}
.contact-window button:hover{
	background-color: rgba(76,86,75,0.8);
	border-radius: 0;
	padding: 5px 0;
}


/*
=================
	FOOTER
=================

*/


footer{
	width: 100%;
	min-height: 80px;
	border-top: 1px solid #635b5b;

}
.footer{
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
	min-height: 80px;

}

.footer-div{
	width: 40%;
	text-align: center;

}

.footer-div h4{
	color: #f5f4ee;
	font-weight: 400;
}

.footer-div p{
	font-size: 10px;
	color: #f5f4ee;
	font-family:  'Arima Madurai', cursive;
}
.footer-div a{
	font-size: 11px;
	color: #f5f4ee;
	font-family:  'Arima Madurai', cursive;
}


/*

==========================
		MOBILE PAGE
==========================

*/

@media screen and (max-width: 986px){
	.contact-info input{
		width: 95%;
	}
}


@media screen and (max-width: 840px){
	.home-text h1{
		margin-top: 280px;
		font-size: 8.6vw;
	}
	.home-text p{
		font-size: 2.5vw;
	}

	.hamburger{
		display: block;
	}
	.nav-links, .contact-button{
		display: none;
	}
	header{
		height: 90px;
	}
	.about-org-text h2{
		font-size: 13vw;
	}
}