@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900;&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
}

h2 {
	font-size:1.8rem;
	font-weight: 600;
}

h3 {
	font-size: 1.4rem;
	font-weight: 800;
}

h4 {
	font-size: 1.1rem;
	font-weight: 600;
	font-weight: 400;
	color: #1d1d1d;
}

h5 {
	font-size: 1rem;
	font-weight: 400;
	color: #1d1d1d;
}

h6 {
	color: #D8D8D8;
}

button{
	font-size: 0.8rem;
	font-weight: 700;
	outline : none;
	border : none;
	background-color: #B8860B;
	color : aliceblue;
	padding: 13px 30px;
	text-transform: uppercase;
	cursor:pointer;
	transition: 0.3s ease;
}

button:hover{
	background-color:3a3833;
}

hr{
	width: 70px;
	height: 2px;
	background-color: #B8860B; 
}

.star{
	padding:10px 0;
}

.star i{
	font-size: 0.8rem;
	color: BLACK;
}

.navbar{
	font-size: 16px;
	top:0;
	left:0;
}

.navbar-light .navbar-nav .nav-link{
	padding:0 20px;
	color:black;
	transition: 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar i:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar i.active{
	color:CORAL;
}

.navbar i{
	font-size:1.2rem;
	padding: 0 7px;
	cursor:pointer;
	font-weight: 500;
	transition: 0.3s ease;
}

#bar{
	font-size:1.5rem;
	padding:7px;
	cursor:pointer;
	font-weight:500;
	transition:0.3s ease;
	color: black;
}

#bar:hover,
#bar.active{
	color: lightgray;
}

@media only screen and (max-width:991px){
	body > nav > div > button:hover,
	body > nav > div > button:focus{
		background-color:white; 
	}

	body > nav > div > button:hover #bar,
	body > nav > div > button:focus #bar{
		background-color:white; 
	}


	#navbarSupportedContent > ul{
		margin: 1rem;
		justify-content: flex-end;
		align-items: flex-end;
		text-align:right;
	}

	#navbarSupportedContent > ul > li:nth-child(n) > a{
		padding:10px 0;
	}
}

/*Mobile Nav*/
.navbar-light .navbar-toggler{
	border:none;
	outline:none;
}
#home{
	background-image: url("images/batik.png");
	width:100%;
	height: 100vh;
	background-size: cover;
	background-position: top center;
	display:flex;
	flex-direction: column; 
	justify-content: center;
	align-items: flex-start;
}

#home span {
	color: white;
}

/*Product*/
.product{
	cursor: pointer;
	margin-bottom: 2rem;	
}

.product img{
	transition: 0.3s all;
}

.product:hover img{
	opacity:0.7;
}

.product .buy-btn{
	background: grey;
	transform: translateY(20px);
	opacity: 0;
	transition: 0.3s all;
}

.product:hover .buy-btn{
	transform: translateY(0);
	opacity: 1;
}

