/* FONT IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans: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");
@font-face {
    font-family: "Signature";
    src: url("../font/tropical_summer_signature-webfont.woff2") format("woff2");
}

/* BASE STYLES */
html,
body {
    font-family: "Work Sans", sans-serif;
    background-color: #ffffff !important;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.15em;
    color: #ffffff;
}

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

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c1c1c1;
    transition: all 0.3s ease;
}

/* SIGNATURE FONT */
.signature-font {
    font-family: "Signature" !important;
}

/* WRAPPER */
.wrapper {
    display: flex;
    height: 100vh;
}

/* MAIN IMAGE */
.main-img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* DESKTOP NAVBAR */
.desktop-bar {
    position: absolute;
    width: auto;
    padding: 0;
    left: auto;
    right: 20px;
    bottom: 40%;
    z-index: 2;
}

/* CANVAS */
canvas {
    display: block;
    vertical-align: bottom;
}

/* PARTICLES.JS */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #232741;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url("../img/main-img.jpg");
}

/* STATS.JS */
.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13e8e9;
    font-size: 0.8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}
.js-count-particles {
    font-size: 1.1em;
}
#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}
#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}
.count-particles {
    border-radius: 0 0 3px 3px;
}

/* WRAPPER BAR */
.wrapper-bar {
    background: #fff;
    padding: 10px;
    border-radius: 100px;
    display: inline-block;
}
.wrapper-bar ul {
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
}
.wrapper-bar ul li {
    display: inline;
}
.wrapper-bar ul li a {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    text-decoration: none;
    color: #6d6d6d;
    font-size: 10px;
    border-radius: 100%;
    cursor: pointer;
}
.bar-icon {
    padding: 7px;
    border-radius: 100%;
}
a.bar-icon:hover {
    background: #e4d3cd;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

/* ICON STATES */
.img-active {
    display: none;
}
.icon-date.active,
.icon-love.active,
.icon-location.active,
.icon-insta.active,
.icon-doa.active {
    background-color: #d7af9f;
    width: 40px;
    height: 40px;
}
.icon-date.active>.img-off,
.icon-love.active>.img-off,
.icon-location.active>.img-off,
.icon-insta.active>.img-off,
.icon-doa.active>.img-off {
    display: none;
}
.icon-date.active>.img-active,
.icon-love.active>.img-active,
.icon-location.active>.img-active,
.icon-insta.active>.img-active,
.icon-doa.active>.img-active {
    display: block;
}

/* ADD SHADOW */
.add-shadow {
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
}

/* WEDDING TITLE */
.the-wedding-title {
    font-size: 120px;
    font-weight: 600;
    margin-bottom: 11rem;
}

/* MOBILE SEPARATOR */
.mobile-separator {
    max-height: 100vh;
    background-color: #fdfbf7;
    width: 60%;
    overflow: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* CONTENT */
.content-data {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    margin-top: -300px;
    padding-bottom: 100px;
    background-color: #d7af9f;
    z-index: -1;
    text-align: center;
    align-items: center;
}

/* DAUN MELAYANG */
.daun-melayang {
    z-index: 3;
    position: absolute;
    width: 100%;
    left: 0;
    display: none;
}

/* RESPONSIVE: HIDE FLOATING ICON */
@media only screen and (max-width: 992px) {
    .desktop-bar {
        display: none;
    }
}
