/* @import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100..800&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poetsen+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Passion+One:wght@400;700;900&family=Poetsen+One&display=swap");

@font-face {
    font-family: "Chococooky";
    src: url("../src/assets/fonts/Chococooky.woff") format("woff");
}

:root {
    --text-color: #101113;
    --sub-text-color: #575757;
    --c-repat: 4;
    --bento-width-total: calc(var(--pixel) * var(--c-repat) + var(--gap-px) * (var(--c-repat) - 1));
    --repeat: 6;
    --pixel: 175px;
    --gap-px: 40px;
    --cal: calc(var(--pixel) * var(--repeat) + var(--gap-px) * (var(--repeat) - 1));
}

::-webkit-scrollbar {
    background-color: transparent;
    width: 0;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #f0b281;
    border-radius: 10px;
}

::selection {
    background-color: #6cc096;
}

* {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    -khtml-user-drag: none;
    -o-user-drag: none;
    box-sizing: border-box;
}

img {
    user-select: none;
    pointer-events: none;
}

html {
    min-height: max-content;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    width: 100%;
    display: flex;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    margin: -15px;
    z-index: -1;
    background-color: #ffffff;
    background-image: url("./images/wallpaper.jpg");
    /* background: linear-gradient(to bottom, #c0e5be, #f4c4ca); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
}

.container {
    align-content: center;
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    padding: 64px;
}

/* .container,
.container * {
    transition: width 0.5s ease, height 0.5s ease;
} */

aside {
    display: flex;
    position: relative;
    width: calc(100% - var(--bento-width-total));
    max-width: 820px;
    flex-grow: 1;
    min-height: var(--cal);
    font-family: "Playpen Sans", cursive;
    /* font-family: 'Chococooky'; */
}

.about-me {
    max-width: 500px;
    margin-right: 30px;
    margin-bottom: 32px;
    position: sticky;
    height: fit-content;
    top: 64px;
    left: 64px;
}

.about-me * {
    transition: transform 0.2s ease-in-out, scale 0.2s ease-in-out, visibility 0s,
        opacity 0.5s;
}

/* .about-me>:hover {
    transform: scale(1.05);
} */

/* .about-me>:active {
    transform: scale(0.95);
} */

.avatar-box {
    position: relative;
    width: 184px;
    height: 184px;
}

.avatar-box::after {
    z-index: 5;
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 4px 0px;
}

.avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 4px 0px;
    transition: transform 0.2s ease-in-out;
}

#dot-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 6;
}

#status {
    display: flex;
    flex-direction: row;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ffffff;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    padding: 5px;
    transition: width 0.5s ease-in-out;
    user-select: none;
}

#status * {
    margin: 0;
}

#status .empty {
    visibility: hidden;
    width: 25px;
    height: 20px;
}

#status p {
    font-size: 0.8em;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    visibility: hidden;
}

.avatar-box:hover #status {
    width: max-content;
    min-width: fit-content;
}

.avatar-box:hover #status p {
    visibility: visible;
}

#ping {
    position: absolute;
    inset: 0;
    margin: auto;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    to {
        transform: scale(2);
        opacity: 0;
    }
}

#dot {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: gray;
    position: absolute;
}

.avatar-pendant {
    width: 210px;
    height: 210px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
}

.bubble-trigger {
    cursor: pointer;
    /* transition: visibility 0s, opacity 0.5s; */
}

.bubble-trigger .position {
    visibility: hidden;
    position: absolute;
    height: 0px;
    width: 0px;
    top: 78px;
    left: 122%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: flex-start;
}

.bubble-trigger.active .position {
    visibility: visible;
}

.bubble {
    /* height: 100px;
    width: 100px; */
    position: absolute;
    background-color: transparent;
}

.bubble::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 21px;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2px 0px;
}

.bubble::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 5px;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2px 0px;
}

.status-bubble {
    /* display: flex;
    flex-direction: column;
    align-items: flex-end; */
    position: absolute;
    max-width: 350px;
    width: max-content;
    height: fit-content;
    border: 10px solid white;
    box-sizing: border-box;
    border-radius: 12px;
    word-wrap: break-word;
    font-size: 14px;
    /* line-height: 20px; */
    color: #79162c;
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    /* -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    user-select: none;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.status-bubble img {
    object-fit: contain;
    width: 8em;
    float: left;
    /* shape-outside: circle(54%); */
    /* shape-outside: url(../src/assets/images/stickers/1202609040958431272.png); */
    shape-margin: 3px;
}

.status-bubble .status-content {
    width: 100%;
    height: fit-content;
}

.status-bubble::after {
    content: "~Faker~";
    position: absolute;
    bottom: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    color: white;
    font-weight: bold;
    background-color: #d51740;
    border-radius: 10px;
    padding: 0 5px;
}

.status-bubble:hover {
    height: max-content;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.pin {
    font-family: serif;
    font-size: 30px;
}

.icon-1 {
    position: absolute;
    top: -35px;
    right: -35px;
}

.icon-2 {
    position: absolute;
    bottom: -15px;
    left: 0%;
}

.icon-3 {
    position: absolute;
    bottom: -15px;
    left: 15%;
}

.icon-4 {
    position: absolute;
    bottom: -15px;
    left: 30%;
}

.icon-5 {
    position: absolute;
    bottom: -15px;
    left: 45%;
}

.username {
    margin: 30px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    height: fit-content;
    user-select: none;
}

.name {
    font-size: 2em;
    margin: 0;
    width: fit-content;
    margin: 0 5px 0 0;
}

.wobble {
    display: inline-block;
    animation: wobble 1.3s infinite;
    width: 40px;
    height: 40px;
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.line {}

.about-me > p {
    font-size: 1.2em;
}

.about-me p:nth-child(4) {
    margin-top: 0;
}

.wrapper {
    width: fit-content;
    min-height: fit-content;
    height: fit-content;
}

.bento {
    display: grid;
    width: fit-content;
    height: fit-content;
    grid-template-columns: repeat(4, 175px);
    grid-template-rows: repeat(var(--repeat), 175px) 67.5px;
    /* grid-template-areas:
        "c c c c"
        "c c c c"
        "h1 h1 s1 s2"
        "h1 h1 s3 s4"
        "s5 s5 h2 h2"
        "s7 s8 h2 h2"
        "f f f f"; */
    grid-template-areas:
        "c c c c"
        "c c c c"
        "h1 h1 s1 s2"
        "h1 h1 s3 s4"
        "h2 h2 h2 h2"
        "h2 h2 h2 h2"
        "f f f f";
    gap: 40px;
    font-family: "Playpen Sans", cursive;
    /* font-family: 'Chococooky'; */
    transition: transform 0.2s ease-in-out;
}

.bento > :hover {
    transform: scale(1.05);
}

.winget-clock {
    grid-area: c;
    background-image: url("./images/banner10.jpg");
    background-size: cover;
    position: relative;
    text-align: center;
    color: white;
    user-select: none;
    overflow: hidden;
}

.winget-clock:hover p,
.winget-clock:active p {
    opacity: 1;
}

.vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.clock-container {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: fit-content;
    max-height: fit-content;
    text-align: center;
    color: white;
    pointer-events: none;
    user-select: none;
}

.clock-container span {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.time {
    opacity: 0.7;
    font-size: 10em;
    font-weight: bold;
    font-family: "Poetsen One", sans-serif;
}

.day {
    position: absolute;
    bottom: -156px;
    left: 50%;
    min-width: max-content;
    transform: translate(-50%, -50%);
    font-size: 8em;
    font-style: italic;
    font-family: "Great Vibes", cursive;
}

.date {
    position: absolute;
    bottom: -136px;
    left: 50%;
    min-width: max-content;
    transform: translate(-50%, -50%);
    font-size: 3.5em;
    font-family: "Passion One", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.widget {
    padding: 24px;
    background-color: hwb(0 100% 0% / 0.314);
    border-radius: 20px;
    outline: rgba(128, 128, 128, 0.16) solid 1px;
    backdrop-filter: blur(20px);
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.widget:active {
    transform: scale(0.95);
}

.widget:hover {
    background-color: hwb(0 68% 32% / 0.063);
}

.widget-display {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    user-select: none;
    cursor: not-allowed;
}

.widget-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(50px); */
    transition: filter 0.2s ease-in-out;
}

.widget-display:hover img {
    filter: blur(0);
}

.widget-full {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    user-select: none;
    cursor: not-allowed;
    width: 100%;
}

#img1 {
    grid-area: h1;
}

#img2 {
    grid-area: h2;
}

#img3 {
    display: none;
}

.widget > p {
    opacity: 0;
    color: var(--text-color);
    background-color: #ffffff;
    border-radius: 15px;
    padding: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 16px;
    font-size: 0.89em;
    transition: opacity 0.2s ease-in-out;
    outline: rgba(128, 128, 128, 0.322) solid 1px;
}

.widget-display:hover p,
.widget-display:active p {
    opacity: 1;
}

.widget-social {
    position: relative;
    grid-area: auto;
    user-select: none;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color);
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px;
}

.icon,
.icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.meta {
    margin-top: 8px;
}

.meta b {
    font-size: 0.9em;
    white-space: nowrap;
}

.meta p {
    color: var(--sub-text-color);
    font-size: 0.8em;
    padding: 0;
    margin: 0;
}

/* .follow {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 7px 14px;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.7em;
    width: fit-content;
    height: fit-content;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
*/

.widget-social:hover .follow {
    opacity: 1;
}

.follow {
    position: relative;
    padding: 7px 14px;
    border-radius: 7px;
    border: 1px solid rgb(61, 106, 255);
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: bold;
    /* letter-spacing: 2px; */
    background: transparent;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    opacity: 0;
    bottom: -10px;
    width: fit-content;
    height: fit-content;
}

.follow:hover {
    background: rgb(61, 106, 255);
    box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.follow:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}

.follow::before {
    content: "";
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
}

.follow:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}

footer {
    grid-area: f;
    padding: 20px 24px !important;
}

footer .footer-box {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

footer p {
    margin: 0;
    width: fit-content;
}

#scroll-to-bento {
    visibility: hidden;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: fit-content;
    transform: translateX(-50%);
    background-color: transparent;
    border: none;
    padding: 10px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
    cursor: pointer;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

#scroll-to-bento svg {
    width: 50px;
    color: #fff;
}

/* #back-to-top {
    position: fixed;
    bottom: 20px;
    right: 5%;
    display: none;
    width: 60px;
    height: 60px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1000;
    padding: 5px;
    border-radius: 10px;
    box-sizing: unset;
    backdrop-filter: blur(10px);
    background-color: #ffffff50;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 4px 0px;
    transition: transform 0.2s ease-in-out;
}

#back-to-top:active {
    transform: scale(0.9);
}
*/

/* From Uiverse.io by vinodjangid07 */
#back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    background-color: rgb(40,40,40);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgba(118, 255, 248, 0.253);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 5%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    display: none;
}

.svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}

.svgIcon path {
    fill: white;
}

#back-to-top:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background-color: rgba(118, 255, 248, 0.8);
    align-items: center;
}

#back-to-top:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateY(-200%);
}

#back-to-top::before {
    position: absolute;
    bottom: -20px;
    left: 24%;
    content: "Back to Top";
    color: white;
    /* transition-duration: .3s; */
    font-size: 0px;
}

#back-to-top:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
}


@media (width <1260px) {
    .container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: fit-content;
    }

    aside {
        min-width: 820px;
        max-width: 820px;
        width: 820px;
        min-height: 100vh;
    }

    .about-me {
        width: max-content;
        margin: 0;
        padding: 0 16px;
        margin-bottom: 10px;
    }

    .wrapper {
        padding-top: 20px;
    }

    .bento {}

    #scroll-to-bento {
        visibility: visible;
    }

    #back-to-top {
        width: fit-content;
        height: 50px;
    }

    aside a path {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px;
    }
}

@media (width <900px) {
    .container {
        padding: 48px 24px;
    }

    aside {
        min-width: 380px;
        max-width: 380px;
        width: 380px;
        height: 100vh;
    }

    .about-me {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .avatar-box {
        width: 120px;
        height: 120px;
    }

    .avatar {
        width: 100%;
        height: 100%;
    }

    .status-bubble {
        max-width: 210px;
        max-height: fit-content;
    }

    .avatar-pendant {
        width: 210px;
        height: 210px;
    }

    #dot-box {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #ffffff;
        position: absolute;
        bottom: 14px;
        right: 4px;
    }

    #status {
        border-radius: 30px;
        width: 20px;
        height: 20px;
        padding: 5px;
    }

    #status p {
        font-size: 0.5em;
    }

    #status .empty {
        width: 15px;
        height: 10px;
    }

    #status {
        width: max-content;
        min-width: fit-content;
    }

    #status p {
        visibility: visible;
    }

    #ping {
        width: 13px;
        height: 13px;
    }

    #dot {
        width: 13px;
        height: 13px;
    }

    .name {
        font-size: 1.6em;
    }

    .wobble {
        width: 30px;
        height: 30px;
    }

    .about-me > p {
        font-size: 1em;
    }

    .wrapper {
        /* height: 100vh;  */
    }

    .bento {
        column-gap: 24px;
        row-gap: 24px;
        /* grid-template-columns: repeat(4, 77px);
        grid-template-rows: repeat(8, 77px); */
        grid-template-columns: repeat(2, 178px);
        grid-template-rows: repeat(7, 178px);
        /* grid-template-areas:
            "c c c c"
            "c c c c"
            "h1 h1 s1 s2 "
            "h1 h1 s3 s4 "
            "h3 h3 h3 h3"
            "h3 h3 h3 h3"
            "s5 s6 h2 h2 "
            "s7 s8 h2 h2 ";
    } */
        grid-template-areas:
            "c c "
            "s1 s2 "
            "s3 s4 "
            "h1 h1"
            "s5 s6"
            "s7 s8"
            "h2 h2"
            "f f";
    }

    .clock-container {
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        min-width: fit-content;
        min-height: fit-content;
        text-align: center;
        color: white;
        pointer-events: none;
    }

    .time {
        font-size: 80px;
    }

    .day {
        bottom: -86px;
        left: 50%;
        font-size: 67px;
    }

    .date {
        bottom: -75px;
        left: 50%;
        font-size: 30px;
    }

    .widget > p {
        opacity: 1;
    }

    #img3 {
        display: none;
        grid-area: h3;
    }

    /* .widget-social {
        position: relative;
        padding: 0 !important;
        grid-area: auto;
        user-select: none;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: var(--text-color);
    }

    .icon {
        display: flex;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 2px 0px;
    }

    .icon,
    .icon img {
        width: 77px;
        height: 77px;
        object-fit: contain;

    }

    img[src^="./src/assets/images/social/"] {
        width: 50px !important;
        height: 50px !important;
    }

    .meta {
        display: none;
        margin-top: 0px;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .meta b {
        font-size: small;
        font-weight: 400;
        white-space: nowrap;
    }

    .meta p {
        display: none;
    }
 */
    .follow {
        opacity: 1;
    }

    /* footer {
        display: none;
    } */
}