@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=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Pinyon+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    /* definisi variable font-weight */
    --ff-body: "Poppins", sans-serif;
    --fw-body: 400;
    --ff-divi-header: "Playfair Display", serif;
    --ff-divi-body: "Alex Brush", cursive;
    --ff-title: "Pinyon Script", cursive;
    --ff-subtitle: "Cormorant Infant", serif;
}

body {
    overflow: hidden;
    font-family: var(--ff-body);
    font-weight: var(--fw-body);
    font-style: normal;
}

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;
    --bs-gutter-y: 0;
}

.form-control {
    font-family: var(--ff-body);
    font-weight: var(--fw-body);
}

.btn {
    font-family: var(--ff-body);
    font-weight: var(--fw-body);
}

.music-disc {
    position: fixed !important;
    bottom: 30px !important;
    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;
    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: hiden;
    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;
    }
}

/* --------------- 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: 50px;
    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 h1 {
    font-family: var(--ff-subtitle);
    font-size: 28px;
    color: var(--bs-white);
}

section.top-cover > .inner h2 {
    font-size: 18px;
    color: var(--bs-white);
    font-family: var(--ff-subtitle);
}

section.top-cover > .inner h3 {
    font-size: 24px;
    color: var(--bs-white);
    font-family: var(--ff-title);
}

section.top-cover > .inner p {
    font-size: 14px;
    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;
}
#rsvp .rsvp-item {
    margin-top: 2rem;
}
#rsvp .rsvp-item .card .card-body span {
    font-size: 2.5rem;
}
#rsvp .rsvp-item .card .card-body h4 {
    font-size: 18px;
}
#rsvp .rsvp-item .card .card-body p {
    font-size: 14px;
}

/* Tombol RSVP */
.btn-rsvp {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: var(--fw-body);
    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-weight: var(--fw-body);
}

/* --------------- 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;
}

/* --------------- Timeline --------------- */

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    max-width: 1200px;
    margin: 1rem auto 2rem auto;
}

.timeline:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background-color: var(--bs-primary);
}

.timeline > .timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline > .timeline-item:after,
.timeline > .timeline-item:before {
    content: " ";
    display: table;
}

.timeline > .timeline-item:after {
    clear: both;
}

.timeline > .timeline-item > .timeline-panel {
    float: left;
    position: relative;
    width: 46%;
    padding: 16px;
    border: 1px solid transparent;
    background-color: var(--bs-white);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.timeline > .timeline-item > .timeline-badge {
    z-index: 10;
    position: absolute;
    top: 16px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    border-radius: 50% 50% 50% 50%;
    text-align: center;
    font-size: 1.4em;
    line-height: 55px;
    color: var(--bs-light);
    overflow: hidden;
    background-color: var(--bs-primary);
}

.timeline > .timeline-item.timeline-inverted > .timeline-panel {
    float: right;
}

.timeline > .timeline-item.timeline-inverted > .timeline-panel:before {
    right: auto;
    left: -8px;
    border-right-width: 8px;
    border-left-width: 0;
}

.timeline > .timeline-item.timeline-inverted > .timeline-panel:after {
    right: auto;
    left: -7px;
    border-right-width: 7px;
    border-left-width: 0;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
    font-weight: 400;
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
}

.timeline-left:before {
    left: 30px;
}

.timeline-left > .timeline-item > .timeline-badge {
    left: 30px;
    top: 10px;
}

.timeline-left > .timeline-item > .timeline-panel {
    width: calc(100% - 70px);
}

.timeline-body h5 {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 18px;
    color: var(--bs-primary);
    margin-bottom: 8px;
}

.timeline-body p {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--bs-primary);
}

/* --------------- 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;
}

/* --------------- 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);
    }
}
@keyframes blink {
    0%,
    20% {
        opacity: 0;
    }
    50%,
    100% {
        opacity: 1;
    }
}

/* --------------- Content --------------- */

.bg-putih {
    background-color: rgba(255, 255, 255, 0.8);
}

.bg-hitam {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-swiper {
    position: fixed;
    top: 0;
    right: 0;
    width: 39%; /* sesuaikan dengan secondary-pane */
    height: 100%;
    z-index: -1; /* di belakang konten */
}

.bg-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.bg-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* biar gak gepeng, tetap full cover */
    display: block;
}

@media only screen and (max-width: 960px) {
    .bg-swiper {
        width: 100%;
    }
}

/* ---------------------------------------- */

#header {
    overflow: hidden;
    padding: 0;
}

#header .header-inner {
    width: 100%;
    padding: 50px 0;
    inset: 0;
    z-index: 2;
    height: 100vh;
    background-color: var(--bs-primary);
}

#header .header-inner .img-header {
    position: relative;
    width: 80%;
    margin-top: 30px;
}

#header .header-inner .img-header .hero-photo {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid var(--bs-white);
    box-shadow: -15px -15px var(--bs-white);
}

#header .header-inner .date-side {
    padding: 16px;
}

#header .header-inner .date-line {
    width: 2px;
    height: 80px;
    background: var(--bs-white);
}

/* TEXT TANGGAL */
#header .header-inner .date-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--bs-white);
    font-family: var(--ff-subtitle);
    font-size: 32px;
}

#header .header-title {
    padding: 30px 0;
}

#header .header-title p {
    font-size: 14px;
    color: var(--bs-white);
}

#header .header-title h2 {
    font-family: var(--ff-title);
    font-size: 24px;
    color: var(--bs-white);
}

#header .header-title h1 {
    font-family: var(--ff-subtitle);
    font-size: 48px;
    color: var(--bs-white);
}

/* ---------------------------------------- */

#couple {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background-color: var(--bs-light);
}

#couple h3 {
    font-family: var(--ff-title);
    font-size: 36px;
}

#couple h4 {
    font-family: var(--ff-title);
    font-size: 48px;
}

#couple h2 {
    font-family: var(--ff-subtitle);
    font-size: 20px;
}

#couple h1 {
    font-family: var(--ff-subtitle);
    font-size: 48px;
}

#couple p {
    font-size: 14px;
}

#couple img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.couple-bride img {
    border: 1px solid var(--bs-primary);
    box-shadow: 15px 15px var(--bs-primary);
}

.couple-groom img {
    border: 1px solid var(--bs-primary);
    box-shadow: -15px -15px var(--bs-primary);
}

#couple .couple-line {
    width: 100%;
    height: 2px;
    background: var(--bs-primary);
}

/* ---------------------------------------- */

#weddingDate {
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--bs-light);
}

.img-date {
    text-align: center;
}

#weddingDate .img-date img {
    width: 350px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    box-shadow:
        rgba(255, 255, 255) 0px 2px 0px,
        rgba(255, 255, 255) 0px 7px 0px -3px,
        rgba(255, 255, 255) 0px -3px 0px inset;
}

#weddingDate .box-card-countdown {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 130px 32px 32px 32px;
    text-align: center;
    border-top: 1px solid var(--bs-light);
    border-bottom: 1px solid var(--bs-light);
    margin-top: -100px;
}

#weddingDate .box-card-countdown p {
    color: var(--bs-white);
    font-size: 14px;
    font-family: var(--ff-subtitle);
}

#weddingDate .box-card-countdown h3 {
    color: var(--bs-white);
    font-size: 16px;
    font-family: var(--ff-subtitle);
}

#weddingDate .box-card-countdown h4 {
    font-family: var(--ff-subtitle);
    font-size: 24px;
    color: var(--bs-white);
}

#weddingDate .box-countdown {
    width: 100%;
    padding: 0.5rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    text-align: center;
}

#weddingDate .box-countdown .value span {
    font-size: 25px;
    color: var(--bs-white);
    font-family: var(--ff-subtitle);
}

#weddingDate .box-countdown .label {
    font-size: 14px;
    color: var(--bs-white);
    font-family: var(--ff-subtitle);
}

#weddingDate .line-box {
    width: 15%;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--bs-light);
}

.box-date {
    width: 85%;
}

#weddingDate .box-card-date {
    padding: 2rem;
    border-bottom: 1px solid var(--bs-light);
    border-left: 1px solid var(--bs-light);
}

#weddingDate .box-card-date .svg-logo {
    width: 120px;
    color: var(--bs-white);
}

#weddingDate .box-card-date h2 {
    font-family: var(--ff-title);
    font-size: 35px;
    color: var(--bs-white);
    margin: 16px 0;
}

#weddingDate .box-card-date p {
    color: var(--bs-white);
    font-size: 14px;
    font-family: var(--ff-subtitle);
}

#weddingDate .box-card-date h3 {
    color: var(--bs-white);
    font-size: 18px;
    font-family: var(--ff-subtitle);
}

/* ---------------------------------------- */

#gallery {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background-color: var(--bs-primary);
}

/* ---------------------------------------- */

#weddingWishes p {
    color: var(--bs-white);
}

/* ---------------------------------------- */

#tankyou {
    height: 100vh;
    padding: 2rem 0;
    background-image:
        linear-gradient(180deg, rgba(0, 4, 10, 0.36) 68%, #000c0f 100%),
        url(../img/tankyou.jpg);
    background-size: cover;
    background-position: center;
}

#tankyou h2 {
    color: var(--bs-white);
    font-size: 25px;
    font-family: var(--ff-subtitle);
    margin-bottom: 1rem;
}

#tankyou p {
    font-family: var(--ff-subtitle);
    font-size: 14px;
    color: var(--bs-white);
    margin-bottom: 2rem;
}

#tankyou h1 {
    font-family: var(--ff-title);
    font-size: 30px;
    color: var(--bs-white);
}

/* ---------------------------------------- */

#loveStory {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* ---------------------------------------- */

.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-primary);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-disabled-color: var(--bs-primary);
}
