@font-face {
    font-family: 'Gwendolyn';
    src: url('Gwendolyn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bodoni';
    src: url('Bodoni.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    overflow: visible;
}

:root {
    --abh: 'Abhaya Libre', serif;
    --gwe: 'Gwendolyn', sans-serif;
    --bod: 'Bodoni', sans-serif;
    --abu: #eaeaea;
    --bir: #35464d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}

body * {
    word-wrap: break-word;
}

.fix-size{
    position: static;
    right: 0;
    width: 30%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
@media only screen and (max-width: 960px){
    body{
        overflow: hidden;
    }
    .fix-size{
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    .side-desktop{
        display:none !important;
    }
    .top-cover {
        display:flex !important;
    }
}

/* Body, HTML */
body{
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    font-family: var(--abh);
    background: var(--abu);
    color: #fff;
    scroll-behavior: smooth;
    font-size: 15px;
    overflow-x: hidden;
}
html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.orn{
    position: absolute;
}

/* Side Desktop */
.side-desktop {
    background: var(--tos);
    color: var(--hit);
    overflow: hidden;
    position: fixed;
    /*width: 70%;*/
    height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.side-desktop .inner{
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(150,100,50,0.3) 50%, rgba(0,0,0,0.4) 100%);
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.side-desktop .inner .details{
    margin: auto auto 10vh 8vh;
    text-align: left;
    position: relative;
    z-index: 2;
}
.side-desktop .inner .details .sub-judul{
    font-size: 28px;
    margin: 0.5em auto;
}
.side-desktop .inner .details .judul{
    font-size: 70px;
    font-family: var(--che);
    margin: 20px 0;
    font-weight: normal;
    line-height: 1.2;
}
.side-desktop .inner .details .kepada{
    font-size: 15px;
    margin: 0.5em auto;
    display: block;
    line-height: 30px;
}
.side-desktop .inner .details .kepada .nama{
    font-weight: bold;
}
.side-desktop .highlight{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.side-desktop .highlight .outer{
    width: 100%!important;
    height: 100%!important;
    position: absolute!important;
    top: 0!important;
    left: 0!important;
}
.side-desktop .highlight .outer .top-cover-img{
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%!important;
    height: 100%!important;
    top: 0;
    left: 0;
    position: absolute!important;
}

/* Top Cover */
.top-cover {
    background: var(--bir);
    color: #fff;
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    top: 0;
    left: 0;
    padding: 0;
    
    transition: opacity 1.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.5s, all 1.8s;
    transition-timing-function: cubic-bezier(0.550, 0.085, 0.680, 0.530);
    -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.680, 0.530);
    -moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.680, 0.530);
    -o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.680, 0.530);
    display: none;
    flex-direction: column;
}
.top-cover.hide {
    top: -120%;
    bottom: 120%;
    opacity: 0;
    pointer-events: none;
}
.top-cover .inner{
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(150,100,50,0.3) 50%, rgba(0,0,0,0.4) 100%);
    padding: 0 1em;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.top-cover .atas{
    position: absolute;
    top: 5vh;
    left: 0;
    width: 100%;
    text-align: center;
}
.top-cover .bawah{
    margin-bottom: 14vh;
    width: 100%;
    text-align: center;
}
.top-cover .inner .details{
    display: flex;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
    flex-direction: row;
    align-items: flex-end;
}
.top-cover .inner .sub-judul{
    font-size: 20px;
    margin: 0 auto;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.top-cover .inner .judul{
    font-size: 50px;
    font-family: var(--gwe);
    margin: 5px auto;
}
.top-cover .inner .details .kepada{
    margin-bottom: 0.3em;
    margin-top: -3vh;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.top-cover .inner .details .kepada .nama{
    font-weight: bold;
    font-size: 15px;
}
.top-cover .inner .details .buka-undangan a{
    background: var(--bir);
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    margin: 0.5em auto;
    display: inline-block;
    padding: 11px 40px 10px 40px;
    font-size: 17px;
    border: 0;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12), 0 4px 4px rgba(0,0,0,0.12), 0 8px 8px rgba(0,0,0,0.12);
    transition: all 0.25s ease-in-out;
}
.top-cover .inner .details .buka-undangan a:hover{
    background: #000;
}
.top-cover .highlight{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.top-cover .highlight .outer{
    width: 100%!important;
    height: 100%!important;
    position: absolute!important;
    top: 0!important;
    left: 0!important;
}
.top-cover .highlight .outer .top-cover-img{
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%!important;
    height: 100%!important;
    top: 0;
    left: 0;
    position: absolute!important;
}

/* Cover */
.cover{
    position: relative; 
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 95vh;
    padding-bottom: 5vh;
    background: linear-gradient(150deg, #cbebfb 0%, #122337 100%); 
}
.cover .inner{
    position: relative; 
    z-index: 9;
}
.bg{
    background: url('bg.png') center center / 100% auto repeat-y;
    mix-blend-mode: soft-light;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.cover .sub-judul{
    font-size: 20px;
	letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    margin: 1em auto 0 auto;
}
.cover .inner .judul{
    line-height: 44px;
    font-size: 50px;
    font-family: var(--gwe);
    color: #fff;
    margin: 15px auto;
}
.cover .tengah{
    position: relative;
    width: 100%;
    z-index: 99;
}
.cover .foto{
    margin: 8em auto 1em auto;
    height: calc(((265 / 375) * 30vw) / 265 * 361);
    width: calc((265 / 375) * 30vw);
    position: relative;
}
.slick-dalam .outer{
    float:left;
    height: calc(((265 / 375) * 30vw) / 265 * 361);
    border: 1px solid var(--ema);
    border-radius: 100%;
}
.cover .cover-img{
    object-fit: cover;
    object-position: top;
    display: block;
    width: 100%!important;
    height: 100%!important;
    border-radius: 15px;
}
.cover .tanggal{
    font-size: 19px;
    position: relative;
    margin: 0.7em auto 0.3em auto;
    letter-spacing: 1px;
}
.cover .hashtag{
    font-size: 19px;
    position: relative;
    margin: 0 auto 1.5em auto;
}

@media only screen and (max-width: 960px){
    .cover .foto{
        height: calc(((265 / 375) * 100vw) / 265 * 361);
        width: calc((265 / 375) * 100vw);
    }
    .slick-dalam .outer{
        height: calc(((265 / 375) * 100vw) / 265 * 361);
    }
    .cover .cover-img{
        border-radius: 15px;
    }
}
.orn1{
    top: -40px;
    left: -5%;
    width: 110%;
    z-index: 2;
}
.orn2{
    width: 198px;
    right: -8%;
    top: 50px;
    z-index: 3;
}
.orn3{
    width: 139px;
    right: 98px;
    top: 45px;
    z-index: 4;
}
.orn4{
    width: 168px;
    top: -20px;
    left: 48px;
    z-index: 5;
}
.orn5{
    width: 143px;
    left: -5%;
    top: 45px;
    z-index: 6;
}
.orn7-1{
    width: 38px;
    z-index: 7;
    top: 11em;
    left: 15px;
}
.orn7-2{
    width: 38px;
    z-index: 7;
    top: 12em;
    right: 35px;
}
.orn7-3{
    width: 38px;
    z-index: 7;
    top: 20em;
    left: 35px;
}
.orn7-4{
    width: 38px;
    z-index: 7;
    top: 16em;
    right: -19px;
}
.quotes{
    color: var(--bir);
    padding: 2.5em 3.5em;
    line-height: 19px;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Mempelai */
.mempelai, .join{
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(150deg, #cbebfb 0%, #122337 100%); 
}
.mempelai .inner{
    position: relative;
    padding: 2em 1.5em;
    z-index: 9;
}
.orn6{
    width: 146px;
    margin: 20px auto;
}
.mempelai .inner .judul{
    color: var(--hit);
    position: relative;
    font-size: 40px;
    font-family: var(--che);
    margin: 20px auto;
}
.mempelai .inner .sub-judul{
    position: relative;
    display: block;
    margin: 0 auto 30px auto;
}
.mempelai .inner .bride, .mempelai .inner .groom{
    margin: 20px auto;
    position: relative;
    z-index: 4;
}
.mempelai .inner .groom{
    margin-bottom: 0;
}
.mempelai .inner .bride .foto, .mempelai .inner .groom .foto{
    width: 260px;
    height: 260px;
    margin: 0 auto 25px auto;
    position: relative;
    border-radius: 50%;
    padding: 6px;
}
.border-m{
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    border-radius: 50%;
    border: 2px solid #fff;
}
.mempelai .inner .bride .foto .img, .mempelai .inner .groom .foto .img{
    width: 248px;
    height: 248px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}
.mempelai .inner .bride .foto .img img, .mempelai .inner .groom .foto .img img{
    object-fit: cover;
    object-position: center;
    display: block;
    height: 248px;
    width: 248px;
    margin: 0 auto;
}
.mempelai .inner .bride .nama, .mempelai .inner .groom .nama{
    font-family: var(--gwe);
    font-size: 45px;
    color: #fff;
    line-height: 38px;
    padding: 0;
    margin: 10px auto;
    font-weight: normal;
    position: relative;
    display: inline-block;
}
.mempelai .inner .bride .orang-tua, .mempelai .inner .groom .orang-tua{
    margin: 10px auto;
}
.mempelai .inner .bride .instagram, .mempelai .inner .groom .instagram{
    align-items: center;
    margin: 10px auto;
    background: var(--bir);
    border-radius: 10px;
    padding: 5px 15px;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    align-items: center;
}
.orn7-5{
    width: 38px;
    z-index: 7;
    top: 3em;
    left: 25px;
}
.orn7-6{
    width: 38px;
    z-index: 7;
    top: 11em;
    right: 10px;
}
.orn7-7{
    width: 38px;
    z-index: 7;
    bottom: 16em;
    left: 10px;
}
.orn7-8{
    width: 38px;
    z-index: 7;
    bottom: 6em;
    right: 20px;
}

/* Save the Date */
.save-date{
    background: var(--bir);
    text-align: center;
}
.save-date .inner{
    position: relative;
    padding: 2em 1.5em;
}
.save-date .inner .judul{
    font-size: 50px;
    font-family: var(--gwe);
}
.save-date .inner .sub-judul{
    letter-spacing: 1px;
    text-transform: uppercase;
}
.save-date .countdown{
    padding: 2em 1.5em 0 1.5em;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.save-date .countdown > div{
    width: 20%;
    padding: 1em 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    border-radius: 10px;
    color: var(--bir);
    z-index: 99; 
}
.save-date .countdown > div h2{
    font-family: var(--bod);
    font-size: 32px;
    text-align: center;
}
.save-date .countdown > div small{
    text-align: center;
}

/* Ragkaian Acara */
.rangkaian-acara{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    padding: 2em;
    z-index: 9;
}
.rangkaian-acara .urutan-acara{
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0;
    padding: 2em 1.5em;
    overflow: hidden;
    background: var(--abu);
    color: var(--bir);
    border-radius: 15px;
}
.rangkaian-acara .urutan-acara .acara{
    margin: 0;
}
.rangkaian-acara .urutan-acara .acara .judul{
    font-size: 25px;
    font-family: var(--abh);
    margin: 10px auto 20px auto;
}
.rangkaian-acara .urutan-acara .acara .tanggal,.rangkaian-acara .urutan-acara .acara .waktu, .rangkaian-acara .urutan-acara .acara .alamat, .rangkaian-acara .urutan-acara .acara .lokasi{
    line-height: 20px;
    letter-spacing: 0.5px;
}
.urutan-acara .acara .lokasi{
    margin-top: 1em;
}
.rangkaian-acara .urutan-acara .acara .maps{
    margin: 20px auto 0 auto;
    display: block;
    position: relative;
}
.rangkaian-acara .urutan-acara .acara .maps a{
    background: var(--bir);
    color: #fff;
    letter-spacing: 1px;
    border-radius: 10px;
    margin: 0.5em auto 2em auto;
    display: inline-block;
    padding: 11px 40px 10px 40px;
    font-size: 15px;
    border: 0;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12), 0 4px 4px rgba(0,0,0,0.12), 0 8px 8px rgba(0,0,0,0.12);
    transition: all 0.25s ease-in-out;
}
.rangkaian-acara .urutan-acara .acara .maps a:hover{
    background: #000;
}
.orn2-2{
    width: 198px;
    left: -80px;
    top: 20px;
    z-index: 2;
}
.orn2-3{
    width: 198px;
    right: -95px;
    top: 19em;
    z-index: 2;
}

/* Galeri */
.galeri{
    position: relative; 
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
    text-align: center;
}
.galeri .inner{
    z-index: 99;
    position: relative;
    padding: 0 1.5em 2.5em 1.5em;
}
.galeri .inner .judul{
    margin: 20px auto;
    font-family: var(--gwe);
    font-size: 45px;
	line-height:38px;
}
.galeri .inner .sub-judul{
    position: relative;
    display: block;
    margin: 0 0.5em 30px 0.5em;
}
#galeri-content{
    padding: 0;
    z-index:5;
}
#galeri-content img {
    z-index:5;
}

/* E-Gift */
.egift{
    padding: 2em;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.egift .inner {
    padding: 2em 1.5em;
    background: var(--abu);
    border-radius: 15px;
    color: var(--bir);
    position: relative;
    z-index: 2;
}
.egift .inner .judul{
    font-size: 25px;
    margin: 0 auto 20px auto;
    position: relative;
}
.egift .inner .sub-judul{
    line-height: 20px;
    letter-spacing: 0.5px;
}
.egift .button a{
    background: var(--bir);
    color: #fff;
    letter-spacing: 1px;
    border-radius: 10px;
    margin: 2em auto 0 auto;
    display: inline-block;
    padding: 11px 40px 10px 40px;
    font-size: 15px;
    border: 0;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12), 0 4px 4px rgba(0,0,0,0.12), 0 8px 8px rgba(0,0,0,0.12);
    transition: all 0.25s ease-in-out;
}
.egift .button a:hover{
    background: #000;
}
.blocker{
    z-index: 99 !important;
}
#gift{
    background: var(--abu);
	color: var(--bir);
    font-size: 15px;
}
#gift .rekening-list{
    display: flex;
    align-items: flex-end;
    margin: 1em auto;
	border-bottom: 1px solid var(--bir);
}
#gift .rekening-list img{
    width: 35%;
    margin-right: 1em;
}
#gift .rekening-list div{
    margin: 3px 0;
}
#gift .rekening-list .nomor{
    display: flex;
}
.copy-norek{
    background: var(--bir);
    margin: 0 0 0 0.5em;
    padding: 3px 5px;
    font-size: 11px;
    font-family: var(--abh);
    color: #fff;
    border: none;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
}
.copy-norek:hover{
    background: #000;
}

/* Ucapan */
.ucapan{
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    text-align: center;
    background: var(--abu);
    color: var(--bir);
}
.ucapan .inner{
    position: relative;
    padding: 3em 1.5em;
}
.ucapan .inner .judul{
    position: relative;
    font-size: 45px;
    font-family: var(--gwe);
    margin: 0 auto 20px auto;
}
.ucapan .inner .sub-judul{
    position: relative;
    display: block;
    margin: 0 auto 30px auto;
}
.ucapan .form-ucapan{
    padding: 0;
}
.ucapan .form-ucapan .nama{
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 0.5em;
    background: #fff;
    color: #000;
    font-family: var(--abh);
}
.ucapan .form-ucapan .input-ucapan{
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 0.5em;
    max-height: 400px;
    background: #fff;
    color: #000;
    font-family: var(--abh);
}
.ucapan .form-ucapan .button{
    background-color: var(--bir);
    border: none;
    border-radius: 20px;
    padding: 11px 40px 9px 40px;
    margin-bottom: 0.5em;
    color: #fff;
    float: right;
    font-family: var(--abh);
    font-size: 16px;
    letter-spacing:1px;
}
.ucapan .content{
    position: relative;
    margin-top: 3em;
    z-index: 4;
}
.ucapan .content .ucapan-list{
    border-top: 1px solid var(--bir);
    text-align: left;
    padding: 1.2em 0;
}
.ucapan .content .ucapan-list:first-child{
    border:none;
}
.ucapan .content .ucapan-list .nama{
    font-size: 20px;
    letter-spacing: 0.5px;
}
.ucapan .content .ucapan-list .isi{
    margin: 1em 0;
}
.ucapan .content .ucapan-list .tanggal{
    font-size: 11px;
    opacity: 0.7;
}
.ucapan .foot{ 
    z-index: 4;
    margin: 0;
    text-align: center;
}
.ucapan .foot .load-ucapan{
    width: 100%;
    background: var(--bir);
    color: #fff;
    font-family: var(--abh);
    border-radius: 20px;
    margin: 0.5em auto;
    display: inline-block;
    padding: 11px 40px 9px 40px;
    font-size: 16px;
    border: 0;
    letter-spacing: 1px;
    transition: all 0.25s ease-in-out;
}
.ucapan .foot .load-ucapan:hover{
    background: #fff;
}

/* Footer */
.footer{
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(150deg, #cbebfb 0%, #122337 100%); 
}
.footer .inner{
    margin: 3em 0 11em 0;
    padding: 0 1em;
    text-align: center;
    position: relative;
    z-index:2;
}
.orn1-1{
    top: 120px;
    left: -5%;
    width: 110%;
    z-index: 2;
}
.orn2-1{
    width: 198px;
    right: -8%;
    top: 210px;
    z-index: 3;
}
.orn3-1{
    width: 139px;
    right: 98px;
    top: 185px;
    z-index: 4;
}
.orn4-1{
    width: 168px;
    top: 105px;
    left: 48px;
    z-index: 5;
}
.orn5-1{
    width: 143px;
    left: -5%;
    top: 185px;
    z-index: 6;
}

/* Kredit */
.kredit{
    background-color: var(--bir);
    z-index: 5;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    padding: 1em;
    font-size: small;
}
.kredit img{
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    height: 3em;
}
.inline{
    display: inline-flex;
}

/* Musik */
.button-music{
    position: fixed;
    bottom: 12px;
    left: 12px;
    width: 50px;
    height: 50px;
    font-size: 52px;
    text-align: center;
    color: var(--bir);
    background-color: #fff;
    border-radius: 25px;
    z-index: 99;
    display: none;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12), 0 4px 4px rgba(0,0,0,0.12), 0 8px 8px rgba(0,0,0,0.12), 0 16px 16px rgba(0,0,0,0.12);
}
.button-music .inner i{
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
