@charset "UTF-8";
@import url("bootstrap.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

@font-face {
	font-family: "Blackline";
	src: url("../font/Blackline.otf");
}

@font-face {
	font-family: "RoyalWedding";
	src: url("../font/Royal-Wedding-Regular.otf");
}

body {
	font-family: "Baskervville", serif;
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
p {
	margin-bottom: 0;
}

hr {
	margin: 0;
	opacity: 1;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
	--bs-gutter-x: 4rem;
}

/* -------------------- BTN -------------------- */

.btn-volume {
	position: fixed !important;
	bottom: 30px !important;
	left: 20px;
	background: transparent;
	width: 40px;
	z-index: 999;
}

.putar-kiri {
	-moz-animation: rota-full-left 10s infinite linear;
	-webkit-animation: rota-full-left 10s infinite linear;
}
@-moz-keyframes rota-full-left {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(-360deg);
	}
}
@-webkit-keyframes rota-full-left {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(-360deg);
	}
}

.btn {
	font-family: "Libre Baskerville", serif;
}

.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-hover-color: #fff;
	--bs-btn-active-color: #fff;
	--bs-btn-disabled-color: #fff;
}

.btn-light {
	--bs-btn-color: var(--bs-body-color);
	--bs-btn-hover-color: var(--bs-body-color);
	--bs-btn-active-color: var(--bs-body-color);
	--bs-btn-disabled-color: var(--bs-body-color);
}

/* -------------------- Display -------------------- */

.display-hide {
	display: none;
}

/* -------------------- Pane Page -------------------- */

.primary-pane {
	overflow: hidden;
	background-image: linear-gradient(
			0deg,
			rgba(0, 0, 0, 0.2),
			rgba(0, 0, 0, 0.4)
		),
		url(../img/primary-pane.jpg);
	background-size: cover;
	background-position: center;
	top: 0;
	left: 0;
	bottom: 0;
	position: fixed;
	width: 61%;
}

.secondary-pane {
	position: static;
	right: 0;
	background: var(--bs-body-bg);
	width: 39%;
	margin-left: auto;
}

@media only screen and (max-width: 1024px) {
	.primary-pane {
		position: relative;
		width: 100%;
		display: none;
	}

	.secondary-pane {
		position: relative;
		width: 100%;
	}
}

/* -------------------- Top Cover -------------------- */

section.top-cover {
	width: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	transition: all 1.8s;
	transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
	-webkit-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
	-moz-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
	-o-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
}

.top-cover.hide {
	top: -120%;
	pointer-events: none;
}

.top-cover > .inner {
	position: static;
	background-image: linear-gradient(
			180deg,
			rgba(0, 4, 10, 0.36) 68%,
			#000c0f 100%
		),
		url(../img/cover.jpg);
	background-size: cover;
	background-position: center;
	width: 39%;
	height: 100vh;
	right: 0;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 50px;
	padding-bottom: 120px;
	text-align: center;
}

.top-cover > .inner p {
	font-size: 16px;
	color: var(--bs-white);
	font-family: "Baskervville", serif;
	font-weight: 500;
}

.top-cover > .inner h2 {
	font-size: 22px;
	color: var(--bs-white);
	font-family: "Libre Baskerville", serif;
	font-weight: 500;
}

.top-cover > .inner h1 {
	font-family: Blackline;
	font-size: 4rem;
	color: var(--bs-white);
}

@media only screen and (max-width: 1024px) {
	.top-cover > .inner {
		position: relative;
		width: 100%;
	}
}

/* -------------------- Text Title -------------------- */

.divi-title {
	position: relative;
	overflow: hiden;
	width: 100%;
}

.divi-title-header {
	font-family: "Playfair Display", serif;
	font-size: 4rem;
	text-align: center;
	color: var(--bs-body-color);
	opacity: 0.1;
}

.divi-title-body {
	position: absolute;
	padding-top: 30px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.divi-title-body h1 {
	font-family: "Playfair Display", serif;
	font-size: 25px;
	font-weight: 700;
	color: var(--bs-primary);
}

.divi-title-body h2 {
	font-family: RoyalWedding;
	font-size: 60px;
	margin-left: -39px;
	color: var(--bs-body-color);
}

.divi-title-body-white {
	position: absolute;
	padding-top: 30px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.divi-title-body-white h1 {
	font-family: "Playfair Display", serif;
	font-size: 25px;
	font-weight: 700;
	color: #fff;
}

.divi-title-body-white h2 {
	font-family: RoyalWedding;
	font-size: 60px;
	margin-left: -39px;
	color: var(--bs-body-color);
}

/* -------------------- section content -------------------- */

#header {
	position: relative;
	overflow: hidden;
}

#header .swiper {
	width: 100%;
	height: 100vh;
}

#header .swiper-slide {
	transition-timing-function: linear;
}

#header .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#header .header-inner {
	position: absolute;
	width: 100%;
	padding: 4rem 0 6rem 0;
	inset: 0;
	z-index: 2;
	height: 100vh;
	background: linear-gradient(
		0deg,
		rgba(var(--bs-primary-rgb), 1) 0%,
		rgba(255, 255, 255, 0) 100%
	);
}

#header .header-title {
	text-align: center;
	margin-bottom: 3rem;
}

#header .header-title p {
	font-family: "Libre Baskerville", serif;
	font-size: 16px;
	color: var(--bs-white);
}

#header p {
	font-family: "Baskervville", serif;
	font-size: 14px;
	color: var(--bs-white);
	text-align: center;
}

#header .header-title h1 {
	font-family: Blackline;
	font-size: 4rem;
	color: var(--bs-white);
}

.countdown {
	overflow: hidden;
	padding: 0 16px;
	margin-bottom: 2rem;
}

.countdown .box-countdown {
	background: transparent;
	width: 100%;
	padding: 0.5rem;
	margin-left: 0.25rem;
	margin-right: 0.25rem;
	text-align: center;
}

.countdown .value span {
	font-family: "Libre Baskerville", serif;
	font-size: 24px;
	color: var(--bs-white);
}

.countdown .label {
	font-size: 16px;
	color: var(--bs-white);
}

/* ---------------------------------------- */

#about {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

#about h1 {
	font-family: "Libre Baskerville", serif;
	font-size: 28px;
	margin-bottom: 2rem;
}
#about h2 {
	font-family: "Libre Baskerville", serif;
	font-size: 18px;
	margin: 0;
}

#about p {
	font-size: 16px;
}

#about .swiper {
	width: 100%;
	height: 100px;
}

#about .swiper-slide {
	transition-timing-function: linear;
}

#about .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------------------------------------- */

#couple {
	position: relative;
	overflow: hidden;
	padding: 2rem 0 0 0;
}

#couple .img-bride {
	width: 230px;
}

#couple .bride {
	position: relative;
	overflow: hidden;
}

#couple .groom {
	position: relative;
	overflow: hidden;
}

#couple .groom .text-groom {
	font-family: "Libre Baskerville", serif;
	font-size: 26px;
	margin-bottom: 5px;
	text-align: right;
	transform: rotate(8deg);
}

#couple .bride .text-thebride {
	font-family: "Libre Baskerville", serif;
	font-size: 26px;
	margin-bottom: 5px;
	text-align: left;
	transform: rotate(-11deg);
}

#couple .swiper {
	width: 100%;
	height: 300px;
	border-radius: 200px 200px 0 0;
}

#couple .swiper-slide {
	transition-timing-function: linear;
}

#couple .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#couple .couple-inner {
	position: absolute;
	width: 100%;
	padding: 4rem 0;
	inset: 0;
	z-index: 2;
	height: 100vh;
	background: linear-gradient(
		0deg,
		rgba(var(--bs-primary-rgb), 1) 10%,
		rgba(255, 255, 255, 0) 50%
	);
}

#couple .text-bride h1 {
	font-family: Blackline;
	font-size: 3rem;
}

#couple .text-bride h2 {
	font-family: "Libre Baskerville", serif;
	font-size: 18px;
	font-weight: 700;
}

#couple .text-bride p {
	font-size: 14px;
}

#couple h3 {
	font-family: Blackline;
	font-size: 3rem;
	color: var(--bs-secondary);
}

/* ---------------------------------------- */

#weddingDate {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
	background-color: var(--bs-primary);
}

#weddingDate .card {
	border: 0;
	box-shadow: 2px 2px 1px 1px rgba(0, 0, 0, 0.1),
		-2px -2px 1px 1px rgba(0, 0, 0, 0.1);
}

#weddingDate .card .card-body {
	padding: 2rem;
	text-align: center;
}

#weddingDate .bt {
	border-radius: 160px 160px 0 0;
}

#weddingDate .bm {
	border-radius: 0 0 160px 160px;
}

#weddingDate .mbm {
	margin-bottom: -2px;
}

#weddingDate .mtm {
	margin-top: -2px;
}

#weddingDate .card .card-footer {
	background-color: var(--bs-primary);
	color: var(--bs-secondary);
	font-family: Blackline;
	font-size: 2rem;
	text-align: center;
	border: 0;
	border-radius: 0;
}

#weddingDate .card .card-body .svg-logo {
	width: 70px;
}

#weddingDate .card .card-body .st0 {
	stroke: var(--bs-body-color);
	stroke-width: 20px;
	fill: none;
}

/* ---------------------------------------- */

#filterig {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
	background-color: var(--bs-primary);
}

#filterig p {
	font-size: 16px;
	margin-bottom: 1rem;
	color: #fff;
}

/* ---------------------------------------- */

#rsvp {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

#rsvp .rsvp-item p {
	font-size: 16px;
	text-align: center;
}

#rsvp .card {
	border: 1px solid var(--bs-body-color);
	text-align: center;
}

#rsvp .card i {
	font-size: 28px;
	color: var(--bs-body-color);
}

#rsvp .card h4 {
	font-family: "Baskervville", serif;
	font-weight: 500;
	font-size: 18px;
	color: var(--bs-body-color);
}

#rsvp .label-spinner {
	font-weight: 500;
	font-size: 14px;
}

/* ---------------------------------------- */

#weddingWishes {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

#weddingWishes p {
	font-size: 14px;
	text-align: center;
}

#weddingWishes .comment {
	overflow: scroll;
	overflow-x: hidden;
	margin: 32px 0;
	max-height: 80vh;
}

#weddingWishes .comment .list-group-item {
	padding: 0.5rem 0.75rem;
	background-color: transparent;
	border: 0px;
	margin-bottom: 12px;
}

#weddingWishes .comment .list-group-item h5 {
	font-size: 20px;
	margin-bottom: 4px;
}

#weddingWishes .comment .list-group-item p {
	font-size: 16px;
	text-align: left;
}

#weddingWishes .comment .list-group-item small {
	font-size: 12px;
	align-self: center !important;
}

/* ---------------------------------------- */

#weddingGift {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
	background-color: var(--bs-primary);
	text-align: center;
}

#weddingGift span {
	font-size: 48px;
	color: #fff;
}

#weddingGift p {
	font-size: 16px;
	color: #fff;
}

#giftModal .modal-header {
	border-bottom: 0;
}

#giftModal .modal-body {
	padding: 0 30px 30px 30px;
}

#giftModal .modal-body h4 {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	color: #666;
	text-align: center;
	margin-bottom: 30px;
}

#giftModal .modal-body .card {
	background-image: linear-gradient(125deg, #ffffff 0%, #d1d1d1 100%);
	background-color: #ffffff;
	border-radius: 10px 10px 10px 10px;
	overflow: hidden;
	border-width: 0px;
	box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 8%);
}

#giftModal .modal-body .card .card-body {
	padding: 30px 0;
	text-align: center;
}

#giftModal .modal-body .card h5 {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
}

#giftModal .modal-body .card p {
	font-size: 12px;
	color: #666;
}

#walletModal .modal-header {
	border-bottom: 0;
}

#walletModal .modal-body {
	padding: 0 30px 30px 30px;
}

#walletModal .modal-body h4 {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	color: #666;
	text-align: center;
	margin-bottom: 30px;
}

#walletModal .modal-body .card {
	background-image: linear-gradient(125deg, #ffffff 0%, #d1d1d1 100%);
	background-color: #ffffff;
	border-radius: 10px 10px 10px 10px;
	overflow: hidden;
	border-width: 0px;
	box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 8%);
}

#walletModal .modal-body .card .card-body {
	padding: 30px 16px;
	text-align: center;
}

#walletModal .modal-body .card img {
	height: 25px;
	margin-bottom: 8px;
}

#walletModal .modal-body .card h5 {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
	text-align: left;
}

#walletModal .modal-body .card p {
	font-size: 18px;
	color: #666;
	font-family: "Open Sans", sans-serif;
}

/* ---------------------------------------- */

#gallery {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

/* ---------------------------------------- */

#tankyou {
	position: relative;
	overflow: hidden;
}

#tankyou .swiper {
	width: 100%;
	height: 95vh;
}

#tankyou .swiper-slide {
	transition-timing-function: linear;
}

#tankyou .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#tankyou .header-inner {
	position: absolute;
	width: 100%;
	padding: 4rem 0 6rem 0;
	inset: 0;
	z-index: 2;
	height: 100vh;
	background: linear-gradient(
		0deg,
		rgba(var(--bs-primary-rgb), 1) 0%,
		rgba(255, 255, 255, 0) 100%
	);
}

#tankyou .header-title {
	text-align: center;
	margin-bottom: 3rem;
}

#tankyou .header-title p {
	font-family: "Libre Baskerville", serif;
	font-size: 16px;
	color: var(--bs-white);
}

#tankyou p {
	font-family: "Baskervville", serif;
	font-size: 14px;
	color: var(--bs-white);
	text-align: center;
}

#tankyou .header-title h1 {
	font-family: Blackline;
	font-size: 4rem;
	color: var(--bs-white);
}

/* ---------------------------------------- */

.page-footer {
	position: relative;
	overflow: hidden;
	background-color: var(--bs-white);
	padding: 12px 0;
}

.page-footer img {
	height: 30px;
}

.page-footer p {
	font-size: 12px;
	color: #000;
}
