:root {
    /* --pink: #f14e95; */
    --pink: #005a96;
    /* --pink-muted: #fdf4f8; */
    --pink-muted: #eef7fd;
    /* --pink-light: #fcdbe9; */
    --pink-light: #74a8f7;
    --white: #fff;
    --grey: #ccc;
    --light-grey: #d4d4d4;
    --very-light-grey: #eee;
    --dark-grey: #999;
    --dark: #151515;
    --black: #000;
    /* --pink-hover: #fc74d3; */
    --pink-hover: #2c3e50;
    --blue: #0713bb;
    --gold: #dfb604f6;
}

/* html {
    scroll-behavior: smooth;
} */

* {
    font-family: 'Work Sans', sans-serif;
}

body.transition {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.open {
    background-color: var(--white);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 3;
    overflow-y: hidden;
    transition: transform 1s ease-in-out;
}

.doors {
    width: 320px;
    height: 500px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.door {
    width: 50%;
    height: 100%;
    position: absolute;
    transform-origin: center left;
    transition: transform 1s, filter 0.5s;
    overflow: hidden;
}

.door img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.door.left {
    left: 0px;
}

.door.right {
    right: 0px;
    transform-origin: center right;
}

.heading-door {
    position: absolute;
    text-align: center;
    width: 50%;
    font-size: 54px;
    margin: auto;
}

.heading-door-notif {
    position: relative;
    text-align: center;
    width: 50%;
    font-size: 30px;
    margin: 20px auto 20px auto;
}

.heading-door.left {
    left: 0;
}

.heading-door.right {
    right: 0;
}

.heading-door.center {
    text-align: center;
    display: none;
}

@media(max-width: 992px) {
    .heading-door.center {
        display: block;
    }

    .heading-door.left {
        margin-left: 10px;
    }

    .heading-door.right {
        margin-right: 10px;
    }
}

@media(max-width: 320px) {
    .heading-door.center {
        display: block;
    }

    .heading-door.left {
        margin-left: 10px;
    }

    .heading-door.right {
        margin-right: 10px;
    }
}
.img-fluid {
    width: 60%;
    height: 100%;
}


@media(max-width:992px) {
    .img-fluid {
        width: 90%;
        height: 100%;
    }
}

.heading-door.right {
    right: 0;
}

.huruf-sambung {
    font-family: 'Sacramento', cursive;
}

.nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    list-style-type: none;
    display: flex;
    background-color: var(--pink);
    height: 80px;
    z-index: 1;
}

.nav li {
    flex: 1;
}

.nav li a {
    text-decoration: none;
    color: var(--very-light-grey);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1;
    position: relative;
}

.nav li a:hover {
    color: var(--white);
}

.nav li a.nav-item-music {
    transform: translateY(-20%);
    font-size: 30px;
    top: -30px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav .nav-music {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--dark);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.nav li a.rotate {
    animation: rotateAnimation 5s linear infinite;
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#hero-section h1 {
    font-size: 64px;
}

#hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    /* background: rgba(241, 78, 149, 0.4); */
    background: rgba(19, 18, 31, 0.4);
}

#hero-section {
    width: 100%;
    height: 100vh;
    background: url("../img/dashboard-awall.jpeg") top left;
    /* background: url("../img/bg-taman.png") top left; */
    background-size: cover;
    position: relative;
    background-position: center;
    z-index: 2;
}

#hero-section .container {
    position: relative;
}

#hero-section .btn-get-started {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    transition: 0.5s;
    color: var(--white);
    background: var(--pink);
}

#hero-section .btn-get-started:hover {
    background: var(--pink-hover);
    color: var(--white);
}

.sparkle {
    position: absolute;
    width: 100%;
    height: 100%;
}

.text-pink {
    color: var(--pink);
}

.pembuka-section {
    padding-top: 75px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
}

.section-title p {
    margin: 15px auto 0 auto;
}

.section-bg {
    background-color: var(--pink-muted);
}

#content-section {
    overflow-x: hidden;
}

/* ::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pink-light);
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-hover);
} */


.card-acara {
    width: calc(50% - 10px);
}

@media(max-width: 992px) {
    .card-acara {
        width: calc(100% - 10px);
    }
}

.btn-pink {
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5;
    color: var(--white);
    background: var(--pink);
}

.btn-pink:hover {
    background: var(--pink-hover);
    color: var(--white);
}


.border-pink {
    border-radius: 15px;
    border: 2px solid var(--pink);
}

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

.timeline:before {
    content: "";
    top: 0;
    bottom: 0;
    position: absolute;
    width: 1px;
    background-color: var(--light-grey);
    left: 50%;
    margin-left: 0;
    margin-top: 50px;
    margin-bottom: 150px;
}

.timeline>li {
    margin-bottom: 20px;
    position: relative;
}

.timeline>li:before,
.timeline>li:after {
    content: "";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li>.timeline-panel {
    width: 40%;
    float: left;
    border: 1px solid var(--light-grey);
    padding: 30px;
    position: relative;
    border-radius: 4px;
}

.timeline>li>.timeline-panel:before {
    content: " ";
    position: absolute;
    top: 80px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid var(--grey);
    border-right: 0 solid var(--grey);
    border-bottom: 15px solid transparent;
}

.timeline>li>.timeline-panel:after {
    content: " ";
    position: absolute;
    top: 81px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid var(--white);
    border-right: 0 solid var(--white);
    border-bottom: 14px solid transparent;
}

.timeline>li>.timeline-badge {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white);
    width: 160px;
    height: 160px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -80px;
    background-color: var(--dark-grey);
    z-index: 100;
    border-radius: 50%;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    border-left-width: 0;
    border-right-width: 14px;
    left: -15px;
    right: auto;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline-title {
    margin-top: 0;
}

.timeline-date {
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-body>p,
.timeline-body>ul {
    margin-bottom: 0;
    text-align: justify;
}

.timeline-body>p+p {
    margin-top: 5px;
}

@media (maxwidth: 480px) {
    .timeline>li>.timeline-panel {
        width: 75% !important;
    }

    .timeline>li>.timeline-panel:before {
        top: 30px;
    }

    .timeline>li>.timeline-panel:after {
        top: 31px;
    }

    .timeline:before {
        margin-left: -64px;
    }

    .timeline>li>.timeline-badge {
        width: 60px;
        height: 60px;
        margin-left: -20px !important;
    }
}

@media (max-width: 992px) {
    ul.timeline:before {
        left: 90px;
        margin-top: 100px;
        margin-bottom: 250px;
    }

    ul.timeline>li>.timeline-panel {
        width: calc(100% -200%);
    }

    ul.timeline>li>.timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline>li>.timeline-panel {
        float: right;
        padding: 10px;
        text-align: center;
        width: 51%;
    }

    .timeline-body>p,
    .timeline-body>ul {
        margin-bottom: 0;
        text-align: center;
    }

    ul.timeline>li>.timeline-panel::before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    ul.timeline>li>.timeline-panel::after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
}

@media (max-width: 375px) {
    ul.timeline:before {
        left: 90px;
        margin-top: 100px;
        margin-bottom: 400px;
    }

    ul.timeline>li>.timeline-panel {
        width: calc(100% -200%);
    }

    ul.timeline>li>.timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline>li>.timeline-panel {
        float: right;
        padding: 10px;
        text-align: center;
        width: 45%;
    }

    .timeline-body>p,
    .timeline-body>ul {
        margin-bottom: 0;
        text-align: center;
    }

    ul.timeline>li>.timeline-panel::before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    ul.timeline>li>.timeline-panel::after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
}

@media (max-width: 412px) {
    ul.timeline:before {
        left: 80px;
        margin-top: 100px;
        margin-bottom: 430px;
    }

    .timeline>li>.timeline-badge {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        position: relative;
        color: var(--white);
        width: 130px;
        height: 130px;
        line-height: 50px;
        font-size: 1.4em;
        text-align: center;
        position: absolute;
        top: 16px;
        left: 50%;
        margin-left: -80px;
        background-color: var(--dark-grey);
        z-index: 100;
        border-radius: 50%;
    }
}

/* samsung s20 */
/* @media (max-width: 412px) {
    ul.timeline:before {
        left: 82px;
        margin-top: 100px;
        margin-bottom: 300px;
    }
    .timeline>li>.timeline-badge {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        position: relative;
        color: var(--white);
        width: 130px;
        height: 130px;
        line-height: 50px;
        font-size: 1.4em;
        text-align: center;
        position: absolute;
        top: 16px;
        left: 50%;
        margin-left: -80px;
        background-color: var(--dark-grey);
        z-index: 100;
        border-radius: 50%;
    }
} */
.credit-card-bca {
    background-color: var(--gold);
    /* background: url("../img/dashboard-2.jpg") ; */
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 300px;
    color: var(--white);
    position: absolute;
}

.credit-card-mandiri {
    background-color: var(--pink);
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 300px;
    color: var(--white);
    position: absolute;
}

.card-logo {
    width: 75px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.card-container {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.card-sim {
    width: 30px;
    margin-right: 10px;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 22px;
}

.card-name {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
}

.copy-button {
    font-family: 'Courier New', monospace;
    position: absolute;
    top: 5px;
    left: 15px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-kirim {
    font-weight: bold;
    color: var(--white);
    background: var(--pink);

}

.btn-kirim:hover {
    background: var(--pink-hover);
    color: var(--pink-hover);
}

/* #penutup-section {
    position: relative;
    height: 50vh;
    color: var(--black);
    display: flex;
    align-items: center;
    margin-bottom: 0;
} */

/* #penutup-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 1)100%, url('../img/FotoPengantin.jpg'));
    background-position: center;
    background-size: cover;
} */

/* @media(max-width: 480px) {
    #penutup-section {
        margin-top: 5px;
    }
} */

@media(max-width: 768px) {
    .heading-door {
        top: 5rem;
        bottom: auto;
        font-size: 36px;
    }

    #hero-section h1 {
        font-size: 45px;
    }

    .nav li a.nav-item-music {
        font-size: 40px;
        top: -25px;
    }

    .nav .nav-music {
        top: -15px;
        width: 60px;
        height: 60px;
    }

    iframe {
        width: 100%;
    }
}

h3,
span #total-comments {
    font-size: 20px;
    font-weight: bold;
}

.status {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.status div {
    background-color: #005a96;
    color: white;
    width: 100px;
    height: 50px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.status span {
    margin-top: 4px;
    font-size: 14px;

}

.status div div {
    font-size: 13px;
    margin-top: 2px;
}

input,
textarea,
select,
button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #005a96;
    color: white;
    border: none;
    cursor: pointer;
}

.comment {
    border-top: 1px solid #ddd;
    padding: 10px 0;
}

.comment strong {
    color: #005a96;
}

.badge {
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

.hadir {
    background-color: #2ecc71;
    color: white;
}

.tidak-hadir {
    background-color: #e74c3c;
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
    flex-wrap: nowrap;
    align-items: center;
}

.pagination button {
    background: none;
    border: none;
    color: #005a96;
    cursor: pointer;
    font-weight: bold;
    padding: 5px;
}

.pagination .active {
    color: #005a96;
    text-decoration: underline;
}

/* .foto-nama{
    margin-left: 500px;
    width: 300px;
    overflow: hidden;
    border: 5px solid #2C3E50;
    border-radius: 150px 150px 0 0; 
    max-width: 400px;
    max-height: 1000px;
} */

/* .card {
    /* width: 300px;
    overflow: hidden;
    border: 5px solid #2C3E50;
    border-radius: 150px 150px 0 0; 
    max-width: 300px;
    max-height: 1000px;
    
  } */
/*   
  .rounded-top {
    width: 100%;
    display: block;
    border-radius: 150px 150px 0 0; /* radius atas saja
  }
   */

.portrait-left {
    padding-right: 3px;
    max-width: 400px;
    max-height: 1000px;
    margin-left: 260px;
    
}

.portrait-right {
    padding-left: 3px;
    max-width: 400px;
    max-height: 1000px;
}

.landscape-left {
    padding-right: 3px;
    max-width: 400px;
    /* max-height: 200px; */
    margin-left: 260px;
}

.landscape-right {
    max-width: 400px;
    /* max-height: 200px; */
    padding-left: 3px;
}

@media(max-width: 768px) {
    .portrait-left {
        margin-left: 0px;
    }
    .landscape-left {
        margin-left: 0px;
    }
}
    /* .card{
        margin-left: 100px;
        max-width: 200px;
        max-height: 800px;
    }
    .foto-nama{
        margin-left: 100px;
        max-width: 200px;
        max-height: 800px;
    }
}

@media(max-width: 375px) {
    .card{
        margin-left: 75px;
        max-width: 200px;
        max-height: 800px;
    }
    .foto-nama{
        margin-left: 75px;
        max-width: 200px;
        max-height: 800px;
    }
}

@media(max-width: 312px) {
    .card{
        margin-left: 50px;
        max-width: 200px;
        max-height: 800px;
    }
    .foto-nama{
        margin-left: 50px;
        max-width: 200px;
        max-height: 800px;
    }
} */

/* @media(max-width: 390px) {
    .card{
        margin-left: 90px;
        max-width: 200px;
        max-height: 800px;
    }
    .foto-nama{
        margin-left: 90px;
        max-width: 200px;
        max-height: 800px;
    }
} */


.masonry-item :hover {
    transform: scale(1.02);
  }

/* Posisi tombol Next dan Prev di pinggir */
.lg-next,
.lg-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lg-prev {
    left: 20px;
}

.lg-next {
    right: 20px;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-close {
    display: block !important;
    opacity: 1 !important;
}