:root{
	--pink: #f14e95;
	--bg:#0a0a0a;
	--shadow: 0 2px 2px rgb(0 0 0 / 0.5);
}

body{
	font-size: 1.2rem;
	font-family: 'Work Sans', sans-serif;
	min-height: 2000px;
}

.hero{
	position: relative;
	min-height: 100vh;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(img/hero-bg.jpg);
	background-size: cover;
	background-position: top;
	z-index: -1;

}

.hero h1{
	font-family: 'Sacramento', cursive;
	font-size: 6rem;
	text-shadow: var(--shadow);
}

.hero h4{
	font-size: 1.4rem;
	text-shadow: var(--shadow);
}

.hero p{
	font-size: 1.2rem;
	text-shadow: var(--shadow);
}

.hero a{
	color: var(--bg);
	background-color: white;
}

.hero a:hover{
	color: white;
	background-color: var(--pink);
}

.mynavbar{
	background-color: rgba(255,255,255,0.4) !important;
	backdrop-filter:blur(4px);

}

.mynavbar .offcanvas{
	height: 100vh;

}

.mynavbar .navbar-brand, .mynavbar .offcanvas-title {
	font-family: 'Sacramento', cursive;
	font-size: 3.2rem;
	font-weight: bold;
}

.mynavbar .nav-link{
	/*font-weight: 600;*/
	text-transform: uppercase;
}

.home{
	background-image: url(img/home-bg.png);
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	margin-top: -6rem;
	padding-top: 15rem;
	padding-bottom: 5rem;
}

.home h2{
	color: var(--pink);
	font-family: 'Sacramento';
	font-size: 5rem;
	font-weight: Bold;
}

.home h3{
	color: #444;

	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.home p{
	font-size: 1.1rem;
	color: #666;
}

.home .couple{
	margin-top: 100px;
}

.home .couple h3 {
	color: var(--pink);
	font-family: 'Sacramento';
	font-size: 2.4rem;
	font-weight: bold;	
}

.home .couple img {
	width: 100%;
}

.info {
	background-color: var(--bg);
	color: white;
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.info h2 {
	color: var(--pink);
	font-family: 'Sacramento';
	font-size: 5rem;
	font-weight: bold;
}

.info .alamat {
	font-size: 1.1rem;
}

.info .card {
	background-color: rgba(255, 255, 255, 0.2)!important;
	color: white !important;
	border: 1px solid #999;
}

.info .card-header {
	border-bottom: 1px solid #999;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.info .card-body {
	font-size: 1rem;
}

.info .card-footer {
	border-top: 1px solid #999;
	font-size: 1rem;
	text-align: center;
}

/*Media Query*/
/*Laptop*/
@media (max-width: 992px) {
	html {
		font-size: 75%;
	}
	.simply-countdown>.simply-section{
		padding:70px;
	}

}
/*Tablet*/
@media (max-width: 768px) {
	html {
		font-size: 65%;
	}	
	.simply-countdown>.simply-section{
		padding:60px;
		margin:5px;
	}
	.mynavbar .nav-link{
	/*font-weight: 600;*/
		font-size: 2rem;
		text-align: center;
	}
	.sticky-top {
		overflow: hidden;
	}
}
/*Mobile*/
@media (max-width: 576px) {
	html {
		font-size: 60%;
	}
	.simply-countdown>.simply-section{
		padding:45px;
		margin:3px;
	}
}