@import "pages/home.css";
/*==================================================
MYJAT GLOBAL THEME
==================================================*/
:root {
    --myjat-bg: #FFFDF9;
    --myjat-bg-soft: #FFF7EE;
    --myjat-bg-warm: #FFF3E8;
    --myjat-orange: #F58220;
    --myjat-orange-light: #FEA855;
    --myjat-orange-soft: #FDEBD4;
    --myjat-blue: #EAF4FF;
    --myjat-glass: rgba(255, 255, 255, .72);
    --myjat-glass-bg: rgba(255, 255, 255, .10);
    --myjat-glass-blur: 70px;
    --myjat-glass-border: rgba(255, 255, 255, .28);
    --myjat-glass-shadow:
        0 40px 120px rgba(245, 130, 32, .10),
        0 0 0 1px rgba(255, 255, 255, .08),
        inset 0 1px 0 rgba(255, 255, 255, .35),
        inset 0 -1px 0 rgba(255, 255, 255, .08);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

/*==================================================
ORBS
==================================================*/
.myjat-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -45;
    mix-blend-mode: screen;
    will-change: transform;
    animation: myjatOrbFloat 32s ease-in-out infinite;
}
.myjat-orb-1 {
    width: 520px;
    height: 520px;
    left: -180px;
    top: -60px;
    background: #F58220;
    opacity: .30;
}
.myjat-orb-2 {
    width: 420px;
    height: 420px;
    right: -120px;
    top: 180px;
    background:  #FFD166;
    opacity: .25;
    animation-delay: 8s;
}
.myjat-orb-3 {
    width: 620px;
    height: 620px;
    right: -220px;
    bottom: -220px;
    background: #FF8A65;
    opacity: .26;
    animation-delay: 15s;
}
/*==================================================
ANIMATION for orbs
==================================================*/
@keyframes myjatOrbFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    25% {
        transform: translate3d(60px, -40px, 0) scale(1.08);
    }
    50% {
        transform: translate3d(-30px, 60px, 0) scale(.96);
    }
    75% {
        transform: translate3d(50px, 30px, 0) scale(1.05);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}


/*==================================================
MOUSE GLOW
==================================================*/
.myjat-mouse-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 15;
    transform: translate(-50%, -50%);
    background: red;
    filter: blur(70px);
    mix-blend-mode: screen;
    opacity: 1;
    will-change: transform;
}
/*==================================================
FLOATING LEAVES
==================================================*/
.myjat-leaves {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.myjat-leaf {
    position: absolute;
    width: 142px;
    height: 142px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: .16;
    animation: myjatLeafFloat linear infinite;
    will-change: transform;
}
.myjat-leaf:nth-child(1) {
    left: 5%;
    top: -8%;
    animation-duration: 10s;
    animation-delay: -3s;
}
.myjat-leaf:nth-child(2) {
    left: 18%;
    top: -12%;
    animation-duration: 10s;
    animation-delay: -5s;
}
.myjat-leaf:nth-child(3) {
    left: 34%;
    top: -10%;
    animation-duration: 10s;
    animation-delay: -8s;
}
.myjat-leaf:nth-child(4) {
    left: 52%;
    top: -6%;
    animation-duration: 10s;
    animation-delay: -10s;
}
.myjat-leaf:nth-child(5) {
    left: 68%;
    top: -15%;
    animation-duration: 10s;
    animation-delay: -7s;
}
.myjat-leaf:nth-child(6) {
    left: 86%;
    top: -8%;
    animation-duration: 10s;
    animation-delay: -12s;
}

/*==================================================
ANIMATION for leaf
==================================================*/

@keyframes myjatLeafFloat {
    0% {
        transform: translate3d(0, -120px, 0) rotate(0deg) scale(.85);
        opacity: 0;
    }
    15% {
        opacity: .15;
    }
    50% {
        transform: translate3d(40px, 55vh, 0) rotate(180deg) scale(1);
        opacity: .22;
    }
    100% {
        transform: translate3d(-50px, 115vh, 0) rotate(360deg) scale(.82);
        opacity: 0;
    }
}

/*==================================================
GLASS
==================================================*/
.myjat-glass {
    background: var(--myjat-glass-bg);
    backdrop-filter: blur(var(--myjat-glass-blur));
    -webkit-backdrop-filter: blur(var(--myjat-glass-blur));
    border: 1px solid var(--myjat-glass-border);
    box-shadow: var(--myjat-glass-shadow);
}