@font-face {
    font-family: "Coffee Signs";
    font-style: normal;
    font-weight: normal;
    src: local("Coffee Signs"), url("../fonts/CoffeeSigns.woff") format("woff");
}
@font-face {
    font-family: "Photoshoot";
    font-style: normal;
    font-weight: normal;
    src: local("Photoshoot"), url("../fonts/Photoshoot.woff") format("woff");
}
@font-face {
    font-family: "Saudagar";
    font-style: normal;
    font-weight: normal;
    src: local("Saudagar"), url("../fonts/Saudagar.woff") format("woff");
}
@font-face {
    font-family: "Harabara Bold";
    font-style: normal;
    font-weight: normal;
    src: local("Harabara Bold"), url("../fonts/Harabara.woff") format("woff");
}
@font-face {
    font-family: "Gilroy Medium";
    font-style: normal;
    font-weight: normal;
    src: local("Gilroy Medium"),
        url("../fonts/Gilroy-medium.ttf") format("truetype");
}
@font-face {
    font-family: "Gilroy Regular";
    font-style: normal;
    font-weight: normal;
    src: local("Gilroy Regular"),
        url("../fonts/Gilroy-regular.ttf") format("truetype");
}
@font-face {
    font-family: "Pompadour Bold";
    font-style: normal;
    font-weight: normal;
    src: local("Pompadour Bold"),
        url("../fonts/APompadourBoldSample.woff") format("woff");
}
@font-face {
    font-family: "Pompadour Text";
    font-style: normal;
    font-weight: normal;
    src: local("Pompadour Text"),
        url("../fonts/APompadourTextSample.woff") format("woff");
}

html {
    max-width: 575px;
    margin: auto;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

body {
    overflow-x: hidden;
}

/* COMMON */
.header {
    font-family: "Times", sans-serif;
    color: #8b5f56;
    font-size: 30px;
}
.btn-red {
    background-color: #951f1f;
    color: #fff;
}
.btn-brown {
    background: rgb(161, 115, 86);
    background: linear-gradient(
        270deg,
        rgba(161, 115, 86, 1) 0%,
        rgba(205, 154, 125, 1) 100%
    );
    color: #fff;
}
.text-gold {
    color: #b48609;
    font-weight: 600;
}
#main-content {
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 1s;
}
#main-content.open {
    opacity: 1;
    visibility: visible;
}
#audio {
    opacity: 0;
    visibility: hidden;
}

/* OPENING */
#opening {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all ease-in-out 1s;
    height: 100vh;
    z-index: 999;
}
#opening .overlay {
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0, 0, 0);
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(9, 9, 121, 0) 65%
    );
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: #fff;
    padding: 50px 50px 100px;
}
#opening .logo {
    width: 25px;
    margin-bottom: 10px;
}
#opening .top {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 2px;
}
#opening .name {
    font-family: "Photoshoot";
    font-size: 25px;
    letter-spacing: 2px;
    padding-bottom: 50px;
}
#opening .name .text {
    font-family: "Photoshoot";
    font-size: 12px;
    margin-bottom: 15px;
}
#opening .text {
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-family: "Times", sans-serif;
}
#opening .and {
    font-size: 30px;
    line-height: 1;
}
#opening .bottom {
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    padding: 0 30px;
}
#opening .undangan {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 10px;
    margin: 5px 0;
}
#opening .btn-container {
    margin: 10px 0 !important;
    display: flex;
    justify-content: center;
}
#opening .btn-open {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
    background-color: #fff;
    color: #000;
}
#opening.open {
    height: 0;
    visibility: hidden;
    opacity: 0;
}
#opening .flower {
    position: absolute;
    top: -70px;
    left: -65px;
    width: 200px;
}
#opening .stalk-1 {
    position: absolute;
    top: 40px;
    left: -25px;
    width: 70px;
}
#opening .leaf {
    position: absolute;
    bottom: -10px;
    right: 5px;
    width: 100px;
}
#opening .stalk-2 {
    position: absolute;
    bottom: -25px;
    right: -20px;
    width: 75px;
    transform: rotate(-20deg);
}

/* NAVBAR */
#navbar {
    width: 100%;
    max-width: 575px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    background: #313131;
    align-items: center;
    /* padding: 15px 0; */
    /* border-top-right-radius: 15px;
  border-top-left-radius: 15px; */
    position: fixed;
    bottom: 0;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 1s;
}
#navbar.open {
    opacity: 1;
    visibility: visible;
}
#navbar .icon-container {
    height: 60px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all ease-in-out 0.2s;
    position: relative;
}
#navbar .icon-container a {
    position: relative;
}
#navbar .icon-container.active {
    background-color: #bc2f12;
}
#navbar .icon {
    /* width: 25px; */
}

/* SLIDER */
#slider {
    padding-bottom: 30px;
    position: relative;
    overflow-x: clip;
}
#slider .owl-item {
    /* height: 900px; */
}
#slider .img-slider-container {
    height: 100%;
}
#slider .img-slider {
    height: auto;
    width: 100%;
}
#slider .owl-dots {
    text-align: center;
    padding-top: 0px;
    position: absolute;
    bottom: 70px;
    width: 100%;
}
#slider .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
    transition: all ease-in-out 0.2s;
}
#slider .owl-dots button.owl-dot.active {
    width: 50px;
    border-radius: 10px;
}
#slider .owl-dots button.owl-dot:focus {
    outline: none;
}
#slider .pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 70%;
}

/* PEMBUKA */
#pembuka {
    position: relative;
    overflow-x: clip;
}
#pembuka .text-container {
    background: #d9d9d9;
    padding: 50px 3rem;
    text-align: center;
    font-size: 18px;
    line-height: 2;
    color: #070707;
    font-family: "Raleway", sans-serif;
}

/* PENGANTIN */
#pengantin {
    position: relative;
    overflow-x: clip;
    padding: 50px 0;
}
#pengantin .pengantin-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    margin: 0 30px;
    position: relative;
}
#pengantin .pengantin-name {
    font-family: "Raleway";
    font-size: 30px;
    padding: 25px 5rem;
    text-align: center;
    color: #8b5f56;
    letter-spacing: 3px;
    line-height: 1.2;
}
#pengantin .pengantin-img {
    border-radius: 45%;
    height: 300px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}
#pengantin .pengantin-img .pengantin-img-inner {
    height: 280px;
    width: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 45%;
}
#pengantin .pengantin-img .bg-foto {
    width: 115%;
    border-radius: 0;
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
}
#pengantin .pengantin-img.pria .flower-1 {
    position: absolute;
    z-index: -1;
    top: -10px;
    right: -20px;
    transform: rotate(80deg);
}
#pengantin .pengantin-img.pria .flower-2 {
    position: absolute;
    bottom: 0;
    left: -50px;
    z-index: -1;
}
#pengantin .pengantin-img.wanita .flower-1 {
    position: absolute;
    z-index: -1;
    top: -10px;
    left: -20px;
}
#pengantin .pengantin-img.wanita .flower-2 {
    position: absolute;
    bottom: 0;
    right: -50px;
    z-index: -1;
    transform: rotate(110deg);
}
#pengantin .pengantin-desc {
    font-family: "Times", sans-serif;
    text-align: center;
    font-size: 20px;
    color: #8b5f56;
    padding: 0 40px;
}
#pengantin .pengantin-desc .putra-putri {
    font-size: 22px;
}
#pengantin .pengantin-social {
    align-items: center;
    justify-content: center;
    display: flex;
    position: absolute;
    flex-direction: column;
    left: 0;
}
#pengantin .pengantin-social a {
    color: #fff;
    display: block;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
    background-color: #8b5f56;
}
#pengantin .pengantin-social a i {
    font-size: 25px;
}
#pengantin .pengantin-social a:hover {
    background-color: #fff;
    color: #8b5f56;
}
#pengantin .and {
    font-size: 60px;
    color: #8b5f56;
    text-align: center;
    margin-bottom: 30px;
}
#pengantin .top {
    font-family: "Times", sans-serif;
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    padding: 0 40px;
}
#pengantin .img-om-1 {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

/* ACARA */
#acara {
    text-align: center;
    padding: 50px 0px;
    position: relative;
    overflow-x: clip;
}
#acara .inner {
    padding: 0 30px;
}
#acara .paragraf {
    font-family: "Gilroy Medium", sans-serif;
    font-size: 18px;
    padding: 30px 3rem;
    color: #8b5f56;
}
#acara .time {
    display: flex;
    font-family: "Times", sans-serif;
    align-items: center;
}
#acara .time .w-32 {
    width: 32%;
    font-size: 28px;
}
#acara .time .w-33 {
    font-size: 130px;
    font-weight: 600;
    width: 33%;
    color: #b48609;
}
#acara .time .custom-border {
    height: 50px;
    width: 2px;
    background-color: #3b3b3b;
}
#acara .time-inner {
    font-size: 28px;
}
#acara .countdown {
    display: flex;
    justify-content: center;
    padding: 50px 0px;
}
#acara .box-count {
    margin: 0 10px;
}
#acara .box-count .value {
    background-color: #ededed;
    padding: 14px;
    font-size: 40px;
    font-family: "Harabara Bold";
    color: #b48609;
}
#acara .box-count .text {
    background-color: #5c5c5c;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
}
#acara .location {
    padding-top: 20px;
    font-size: 25px;
    color: #8b5f56;
}
#acara .btn-location {
    padding: 30px;
    background-color: #b48609;
    color: #fff;
    border-radius: 20px;
    width: 80%;
}
#acara .btn-covid {
    padding: 20px 30px;
    background-color: #5c5c5c;
    color: #fff;
    border-radius: 15px;
}
#acara .img-om-1 {
    width: 100%;
    max-width: 300px;
}
#acara .img-om-2 {
    width: 100%;
    max-width: 400px;
}
#acara .flower-1 {
    position: absolute;
    left: -130px;
    top: -85px;
    width: 300px;
}

/* DIGITAL ENVELOPE  */
#digital-envelope {
    margin-top: 3rem;
    padding: 50px 0px 0px;
    position: relative;
    overflow-x: clip;
}
#digital-envelope .box {
    border: 1px solid #2f2f2f;
    max-width: 300px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 30px 10px;
    position: relative;
}
#digital-envelope .inner {
    padding: 0 30px;
}
#digital-envelope .paragraf {
    font-family: "Gilroy Medium", sans-serif;
    font-size: 18px;
    padding: 0 3rem;
    color: #8b5f56;
}
#digital-envelope .btn-envelope {
    background: #b48609;
    color: white;
    padding: 10px 40px;
    border-radius: 15px;
}
#modal-envelope .modal-body {
    background-color: #ededed;
    /* background-image: url("../icon/bg.svg"); */
    padding: 1rem 2rem;
}
#modal-envelope .btn-copy {
    background-color: #b48609;
    color: white;
    padding: 10px 40px;
    border-radius: 15px;
}

/* ADDITIONAL */
#additional {
    padding: 0 30px;
    position: relative;
    overflow-x: clip;
}
#additional .box {
    background-color: #ededed;
    max-width: 300px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 30px 10px 10px;
    border-radius: 15px;
}
#additional .title {
    font-family: "Times", sans-serif;
    font-size: 28px;
    color: #8b5f56;
    margin-bottom: 10px;
}
#additional .custom-border {
    height: 2px;
    width: 100%;
    background-color: #8b5f56;
    margin: 20px auto;
    padding: 0 10px;
    max-width: 80%;
}
#additional .time {
    font-family: "Pompadour Bold", sans-serif;
    font-size: 18px;
    color: #8b5f56;
    display: block;
}
#additional .time-inner {
    font-family: "Pompadour Text", sans-serif;
    font-size: 15px;
}
#additional .location-inner {
    font-family: "Pompadour Text", sans-serif;
    font-size: 15px;
}
#additional .btn-location {
    margin-top: 15px;
    width: 100%;
    background-color: #b48609;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}
#additional .decor-bottom {
    position: absolute;
    right: -20px;
    top: 0;
    transform: scaleX(-1);
}
#additional .decor-bottom img {
    position: absolute;
    left: 0;
    bottom: 0;
}
#additional .decor-bottom .leaf {
    width: 120px;
    transform: scaleX(-1) rotate(-20deg);
}
#additional .decor-bottom .stalk-1 {
    transform: rotate(-20deg);
    bottom: -60px;
    width: 80px;
}
#additional .decor-bottom .stalk-2 {
    transform: revert rotate(45deg);
    left: 0;
    bottom: 8px;
    transform: scaleX(-1) rotate(-40deg);
    width: 80px;
}
#additional .flower-2 {
    position: absolute;
    right: -130px;
    bottom: 0;
    width: 300px;
    transform: rotate(-90deg);
    z-index: 1;
}

/* GALERI */
#galeri {
    padding: 50px 30px;
    background-color: #d9d9d9;
}
#galeri .photo-container {
    padding: 0 5px;
}
#galeri .img-gallery {
    padding: 5px;
}
#galeri .img-gallery img {
    border-radius: 10px;
}
#galeri .video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    padding-left: 0;
    padding-right: 0;
}
#galeri .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 10px;
    border-radius: 20px;
}

/* LIVE */
#live {
    padding: 50px 30px;
}
#live .video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}
#live .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 10px;
    border-radius: 25px;
}
#live .btn-live {
    width: 70%;
    padding: 20px 30px;
    background-color: #af0f0f;
    color: #fff;
    border-radius: 15px;
}

/* KONFIRMASI */
#konfirmasi {
    padding: 70px 30px 50px;
}
#konfirmasi .form-control {
    background-color: #d3d3d3;
}
#konfirmasi .form-control:focus {
    border-color: #d3d3d3;
    box-shadow: 0 0 0 0.2rem rgba(175, 135, 126, 0.5);
}
#konfirmasi .custom-control-label {
    color: #696969;
}
#konfirmasi .custom-control-label::before {
    border: 2px solid #696969;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #d3d3d3;
}
#konfirmasi .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #696969;
    border-color: #696969;
}
#konfirmasi .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(175, 135, 126, 0.5);
}
#konfirmasi .custom-control-label::after {
    top: 0.35rem;
    left: -1.37rem;
}
#konfirmasi .btn-submit {
    width: 50%;
    padding: 20px 30px;
    background-color: #505050;
    color: #fff;
    border-radius: 15px;
}

/* COMMENT */
#comment {
    padding: 30px 0px;
    color: #696969;
}
#comment .box {
    padding: 20px 30px;
}
#comment .box:nth-child(2n + 1) {
    text-align: left;
}
#comment .box:nth-child(2n) {
    text-align: right;
}
#comment .box:nth-child(2n + 1) .text {
    border-left: 2px solid #8b5f56;
    padding: 5px 5px 5px 20px;
}
#comment .box:nth-child(2n) .text {
    border-right: 2px solid #8b5f56;
    padding: 5px 20px 5px 5px;
}
#comment .title {
    font-size: 20px;
}
#comment .text {
    margin: 10px 0;
}

/* FOOTER */
#footer {
    padding-bottom: 100px;
    color: #8b5f56;
}
#footer .footer-social {
    align-items: center;
    justify-content: center;
    display: flex;
}
#footer .footer-social a {
    color: #8b5f56;
    display: block;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
}
#footer .footer-social a i {
    font-size: 25px;
}
#footer .copyright a {
    color: #8b5f56;
}

@media screen and (max-width: 426px) {
    #opening .top {
        font-size: 12px;
    }
    #opening .bottom {
        font-size: 12px;
        padding: 0;
    }
    #opening .btn-container {
        margin: 20px 0 !important;
    }
    #opening .btn-open {
        font-size: 12px;
    }
    #opening .undangan {
        height: 50px;
    }
    #slider .owl-dots {
        bottom: 40px;
    }
    #slider .owl-dots button.owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    #slider .owl-dots button.owl-dot.active {
        width: 30px;
        border-radius: 10px;
    }
    #pengantin .pengantin-img {
        width: 220px;
        height: 220px;
    }
    #pengantin .pengantin-name {
        font-size: 18px;
        padding: 25px 3rem;
    }
    #pengantin .pengantin-social a {
        width: 25px;
        height: 25px;
    }
    #pengantin .pengantin-social a i {
        font-size: 10px;
    }
    #pengantin .and {
        font-size: 20px;
    }
    #pengantin .pengantin-desc {
        font-size: 13px;
    }
    #pengantin .top {
        font-size: 13px;
    }
    #pengantin .img-om-1 {
        max-width: 100px;
    }
    #pengantin .pengantin-desc .putra-putri {
        font-size: 14px;
    }
    #pengantin .pengantin-img.pria .flower-1 {
        top: -50px;
        right: -20px;
    }
    #pengantin .pengantin-img.pria .flower-2 {
        bottom: -20px;
        left: -60px;
    }
    #pengantin .pengantin-img.wanita .flower-1 {
        top: -50px;
        left: -20px;
    }
    #pengantin .pengantin-img.wanita .flower-2 {
        bottom: -20px;
        right: -60px;
    }
    #pembuka .text-container {
        font-size: 12px;
    }
    #acara .time .w-32 {
        font-size: 17px;
    }
    #acara .time .w-33 {
        font-size: 80px;
    }
    #acara .time-inner {
        font-size: 20px;
    }
    #acara .location {
        font-size: 15px;
    }
    #acara .paragraf {
        font-size: 13px;
        padding: 30px 1rem;
    }
    #acara .time {
        font-size: 25px;
    }
    #acara .img-om-1 {
        max-width: 100px;
    }
    #acara .img-om-2 {
        max-width: 200px;
    }
    #acara .btn-location {
        font-size: 14px;
    }
    #acara .btn-covid {
        font-size: 14px;
    }
    #digital-envelope .paragraf {
        font-size: 13px;
        padding: 0 1rem;
    }
    #additional .title {
        font-size: 20px;
    }
    #additional .time {
        font-size: 10px;
    }
    #additional .time-inner {
        font-size: 10px;
    }
    #additional .location-inner {
        font-size: 10px;
    }
    #additional .btn-location {
        border-top-right-radius: 20px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 0 !important;
        padding: 5px;
        font-size: 12px;
    }
    #live .btn-live {
        font-size: 14px;
    }
    #konfirmasi .custom-control:not(:first-child) {
        margin-left: 1rem !important;
    }
    #konfirmasi .btn-submit {
        font-size: 14px;
    }
    #comment .title {
        font-size: 14px;
    }
    #comment .text {
        font-size: 12px;
    }
}

/* ANIMATION */
