@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

:root {
	/* definisi variable font-weight */
	--ff-body: "Lora", serif;
	--fw-body: 400;
	--ff-divi-header: "Playfair Display", serif;
	--ff-divi-body: "Alex Brush", cursive;
	--ff-title: "Cinzel", serif;
	--ff-subtitle: "Lora", serif;
}

body {
	overflow: hidden;
	font-family: var(--ff-body);
	font-weight: var(--fw-body);
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
	margin-bottom: 0;
	font-family: var(--ff-subtitle);
}

p {
	font-family: var(--ff-body);
}

hr {
	margin: 0;
	opacity: 1;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
	--bs-gutter-x: 4rem;
	--bs-gutter-y: 0;
}

.music-disc {
	position: fixed;
	bottom: 30px;
	left: 20px;
	background: transparent;
	width: 40px;
	z-index: 999;
}

/* --------------- layout --------------- */

.primary-pane {
	overflow: hidden;
	top: 0;
	left: 0;
	bottom: 0;
	position: fixed;
	width: 61%;
	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;
}

.secondary-pane {
	position: static;
	right: 0;
	background: var(--bs-body-bg);
	width: 39%;
	margin-left: auto;
}

@media only screen and (max-width: 960px) {
	.primary-pane {
		position: relative;
		width: 100%;
		display: none;
	}
	.secondary-pane {
		position: relative;
		width: 100%;
	}
}

/* --------------- Title --------------- */

.divi-title {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.divi-title-header {
	font-family: var(--ff-divi-header);
	font-size: 4rem;
	text-align: center;
}
.divi-title-body {
	position: absolute;
	padding-top: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.divi-title-body h1 {
	font-family: var(--ff-divi-header);
	font-size: 25px;
	font-weight: 700;
}
.divi-title-body h2 {
	font-family: var(--ff-divi-body);
	font-size: 30px;
	margin-top: 20px;
	margin-left: -39px;
}

.divi-light .divi-title-header {
	color: rgba(0, 0, 0, 0.1);
}
.divi-light .divi-title-body h1 {
	color: #fff; /* primary */
}
.divi-light .divi-title-body h2 {
	color: rgba(255, 255, 255, 0.71);
}

.divi-primary .divi-title-header {
	color: rgba(173, 173, 173, 0.1);
}
.divi-primary .divi-title-body h1 {
	color: var(--bs-primary);
}
.divi-primary .divi-title-body h2 {
	color: rgba(57, 61, 67, 0.65);
}

.divi-secondary .divi-title-header {
	color: rgba(173, 173, 173, 0.18);
}
.divi-secondary .divi-title-body h1 {
	color: var(--bs-secondary);
}
.divi-secondary .divi-title-body h2 {
	color: rgba(57, 61, 67, 0.65);
}

/* --------------- preloader --------------- */

#preloader {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background: var(--bs-body-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.blink-svg {
	width: 130px; /* sesuaikan ukuran */
	height: auto;
	animation: blink 1s infinite;
	color: var(--bs-primary);
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

/* --------------- color btn --------------- */

.btn-primary {
	--bs-btn-color: var(--bs-white);
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(var(--bs-white-rgb), 0.125);
	--bs-btn-disabled-color: var(--bs-white);
}

/* --------------- top-cover --------------- */

section.top-cover {
	width: 100%;
	overflow: hidden;
	position: fixed;
	top: -120%;
	left: 0;
	z-index: 9999;
	opacity: 1;
}
section.top-cover.show {
	top: 0;
	transition: top 0.3s ease-out;
}
section.top-cover.hide {
	top: -120%;
	pointer-events: none;
	transition: top 1.8s cubic-bezier(0.23, 0.56, 0.38, 0.78);
}
section.top-cover > .inner {
	position: static;
	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;
}

section.top-cover > .inner {
	background-image:
		linear-gradient(180deg, rgba(0, 4, 10, 0.36) 68%, #000c0f 100%),
		url(../img/cover.jpg);
	background-size: cover;
	background-position: center;
}
section.top-cover > .inner p {
	font-size: 16px;
	color: var(--bs-white);
}
section.top-cover > .inner h2 {
	font-size: 18px;
	color: var(--bs-white);
}
section.top-cover > .inner h1 {
	font-family: var(--ff-title);
	font-size: 30px;
	color: var(--bs-white);
}

@media only screen and (max-width: 960px) {
	section.top-cover > .inner {
		position: relative;
		width: 100%;
	}
}

/* --------------- RSVP --------------- */

#rsvp {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}
#rsvp .section-desc {
	font-size: 14px;
	font-weight: 400;
}
#rsvp .rsvp-item .card .card-body span {
	font-size: 2.5rem;
}
#rsvp .rsvp-item .card .card-body h4 {
	font-size: 18px;
	font-weight: 600;
}
#rsvp .rsvp-item .card .card-body p {
	font-size: 14px;
	font-weight: 400;
}

/* Tombol RSVP */
.btn-rsvp {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	border-radius: 0.375rem;
	cursor: pointer;
	background-color: #fff;
	color: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	transition: all 0.15s ease-in-out;
}
.btn-rsvp.btn-outline {
	background-color: #fff;
	color: var(--bs-primary);
	border: 1px solid var(--bs-primary);
}

.btn-check:checked + .btn-rsvp {
	background-color: var(--bs-primary);
	color: #fff;
	border-color: var(--bs-primary);
}

.form-spinner .btn {
	font-family: var(--ff-body);
	font-weight: 600;
}

/* --------------- GIFT --------------- */

#weddingGift {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
	text-align: center;
}
#weddingGift span {
	font-size: 48px;
}
#weddingGift p {
	font-size: 14px;
}
#giftModal .modal-header {
	border-bottom: 0;
}

#giftModal .modal-body {
	padding: 0 30px 30px 30px;
}

#giftModal .modal-body h4 {
	font-size: 20px;
	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;
	margin-bottom: 12px;
}

#giftModal .modal-body .card p {
	font-size: 12px;
}

#walletModal .modal-header {
	border-bottom: 0;
}

#walletModal .modal-body {
	padding: 0 30px 30px 30px;
}

#walletModal .modal-body h4 {
	font-size: 20px;
	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;
	margin-bottom: 12px;
	text-align: left;
}

#walletModal .modal-body .card p {
	font-size: 18px;
}

/* --------------- Wishes --------------- */

#weddingWishes {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}
#weddingWishes .card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
#weddingWishes .card .card-body {
	padding: 0 1rem 1rem 1rem;
}
#weddingWishes .section-desc {
	font-size: 14px;
	text-align: center;
}
#weddingWishes .comment-block {
	padding-top: 2rem;
}
#weddingWishes .comment-block .item {
	margin-bottom: 2rem;
	padding: 1rem;
	background-color: white;
	border-radius: 4px;
	box-shadow: rgba(var(--bs-primary-rgb), 0.16) 0px 1px 4px;
}
#weddingWishes .comment-block .item .in {
	width: 100%;
}
#weddingWishes .comment-block .item .comment-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}
#weddingWishes .comment-block .item .comment-header .title {
	margin: 0;
	padding-right: 10px;
	color: #0a0000;
	font-size: 14px;
}
#weddingWishes .comment-block .item .comment-header .time {
	font-size: 9px;
	color: #9da8b7;
}
#weddingWishes .comment-block .item .text {
	font-size: 14px;
	color: #44525f;
}
.new-wish {
	animation: wishFade 0.6s ease;
}

@keyframes wishFade {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --------------- Footer --------------- */

.page-footer {
	position: relative;
	overflow: hidden;
	background-color: var(--bs-body-bg);
	padding: 12px 0;
}
.page-footer img {
	height: 30px;
}
.page-footer p {
	font-size: 12px;
}

/* --------------- Animation --------------- */

.putar-kiri {
	animation: rota-full-left 10s infinite linear;
}

@keyframes rota-full-left {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

/* --------------- Content --------------- */
