@import url('https://fonts.googleapis.com/css2?family=Kelly+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,100..700&family=Slabo+27px&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* display: flex; */
@font-face {
    font-family: 'Wallpoet';
    font-style: normal;
    font-weight: 400;
    src: local('Wallpoet'), url(https://fonts.gstatic.com/s/wallpoet/v11/f0X10em2_8RnXVVdUObp58Tt868H.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Iceberg';
    font-style: normal;
    font-weight: 400;
    src: local('Iceberg'), local('Iceberg-Regular'), url(https://fonts.gstatic.com/s/iceberg/v7/8QIJdijAiM7o-qnZiI8EqprnEO0.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@import url('https://fonts.googleapis.com/css?family=Dosis');
@import url('https://fonts.googleapis.com/css?family=Bungee');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins: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');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins: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&family=Sora:wght@100..800&display=swap');

*,
html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --heading-color: rgb(0, 0, 0);
    --color-navbar: white;
    --default-color: #f5f5f5;
    --bg-color: #f7f5ff;
    --accent-color: white;
    --heading3-color: rgb(160, 160, 160);
    --heading2-color: rgb(34, 34, 34);
}

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --sora-font: "Josefin Sans", serif;
}

body {
    background-color: var(--bg-color);
    box-sizing: border-box;
}

.text-gradient {
    filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
    background: linear-gradient(135deg, #6F39F5 0%, #A478FF 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

@media (min-width: 1024px) {

    #sidebar,
    #sidebarShow {
        display: none;
    }

    .header {
        font-family: var(--heading-font);
        color: var(--heading-color);
        background-color: white;
        /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
        border-bottom: 0.8px solid #aaaaaa;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .header .navbar {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 18px;
    }

    .header .navbar .title h2 {
        display: flex;
        padding-left: 20px;
    }

    .header .navbar .title a {
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        color: #19202e;
        text-decoration: none;
        font-size: 18px;
        padding: 15px 20px;
    }

    .header .navbar ul {
        display: flex;
        list-style: none;
        margin-left: auto;
        gap: 20px;
        justify-content: flex-end;
        flex: 1;
        padding: 0 60px;
        width: 100%;
    }

    .header .navbar ul li {
        margin: 0 10px;
    }

    .header .navbar ul li .nav-link {
        font-family: var(--nav-font);
        color: var(--heading2-color);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .header .navbar ul li .nav-link:hover {
        color: #6F39F5;
    }

    .header .navbar ul li .nav-link2 {
        font-family: var(--nav-font);
        color: white;
        filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
        background: linear-gradient(135deg, #6F39F5 0%, #A478FF 100%);
        text-decoration: none;
        background-size: 600% 600%;
        font-size: 13px;
        padding: 10px 14px;
        border-radius: 5px;
        font-weight: 600;
        border: 1px solid #6F39F5;
        transition: all 600ms ease-in-out;
    }

    .header .navbar ul li .nav-link2:hover {
        filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
        background: linear-gradient(135deg, #6F39F5 0%, #A478FF 100%);
        background-size: 200% 200%;
        animation: gradientShift 5s ease infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
        border: 1px solid #6F39F5;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 80px 60px 80px;
        background-color: var(--bg-color);
        gap: 60px;
        z-index: 2;
    }

    .hero .hero-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        width: 100%;
        gap: 60px;
    }

    .hero .hero-container .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 16px;
    }

    .hero .hero-container .hero-content h1 {
        font-family: "Montserrat", sans-serif;
        font-size: 45px;
        font-weight: 800;
        line-height: 1.1;
        color: var(--heading-color);
        margin: 0;
    }

    .hero .hero-container .hero-content p {
        font-family: var(--default-font);
        font-size: 16px;
        color: color-mix(in srgb, #a09bb5 85%, #777 15%);
        line-height: 1.6;
        max-width: 480px;
        margin: 10px 0 25px 0;
    }

    .hero .hero-container .hero-content .btn-hero {
        font-family: var(--nav-font);
        font-weight: 600;
        color: white;
        background: linear-gradient(135deg, #6F39F5 0%, #A478FF 100%);
        padding: 14px 26px;
        font-size: 15px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(111, 57, 245, 0.3);
    }

    .hero .hero-container .hero-content .btn-hero:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #7b4bff 0%, #b28aff 100%);
    }

    .hero .hero-container .ic.soft {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: "Nunito", sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: #6F39F5;
        background: rgba(111, 57, 245, 0.1);
        border-radius: 9999px;
        padding: 6px 14px;
        border: 1px solid rgba(111, 57, 245, 0.2);
        width: fit-content;
        transition: all 0.3s ease;
    }

    .hero .hero-container .ic.soft i {
        color: #6F39F5;
        font-size: 1rem;
    }

    .hero .hero-container .ic.soft:hover {
        background: #6F39F5;
        color: white;
    }

    .hero .hero-container .ic.soft:hover i {
        color: white;
    }

    /* Gambar di kanan */
    .hero .hero-container .hero-image {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero .hero-container .hero-image .image img {
        width: 95%;
        max-width: 450px;
        height: auto;
        object-fit: contain;
        border: 0.8px solid #aaaaaa;
        border-radius: 16px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .hero .hero-container .hero-image .image img:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(111, 57, 245, 0.25);
    }
}

/* Mobile View */
@media (max-width: 1024px) {
    #desktop {
        display: none;
    }

    .header {
        font-family: var(--heading-font);
        color: var(--heading-color);
        background-color: white;
        /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
        border-bottom: 0.8px solid #aaaaaa;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 6;
    }

    .header .navbar {
        position: relative;
        width: 100%;
        display: flex;
        /* justify-content: center; */
        align-items: center;
        padding: 10px 18px;
    }

    .header .navbar .title h2 {
        display: flex;
        padding-left: 0;
    }

    .header .navbar .title a {
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        color: #19202e;
        text-decoration: none;
        font-size: 18px;
        padding: 15px 20px;
    }

    header .navbar .toggle {
        position: absolute;
        right: 22px;
        font-size: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        position: fixed;
        z-index: 9999;
        transition: background-color 0.3s;
        transition: all 0.8s;
        color: var(--heading2-color);
    }

    .nav-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background-color: white;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transition: left 0.3s ease;
        z-index: 12;
    }

    .nav-mobile .h-sidebar {
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 0.8px solid #aaaaaa;
    }

    .nav-mobile .h-sidebar .img-sidebar {
        width: 30px;
        height: 30px;
        /* margin: 20px 0; */
    }

    .nav-mobile h2 {
        display: flex;
    }

    .nav-mobile .nav-logo-sidebar {
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        color: #19202e;
        text-decoration: none;
        font-size: 18px;
        padding: 20px 10px;
    }

    .nav-mobile .nav-add {
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .nav-mobile .nav-add .start-nav {
        margin: 20px;
        width: 100%;
        padding: 14px 0;
        font-size: 14px;
        font-weight: 600;
        color: white;
        filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
        background: linear-gradient(135deg, #6F39F5 0%, #A478FF 100%);
        border-radius: 5px;
        border: 1px solid #6F39F5;
        cursor: pointer;
        transition: all 600ms ease-in-out;
    }

    .nav-mobile .nav-add .start-nav a {
        text-decoration: none;
        color: white;
    }

    .nav-mobile .nav-add .start-nav:hover {
        filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
        background: linear-gradient(135deg, #6F39F5 0%, #A478FF 100%);
        background-size: 200% 200%;
        animation: gradientShift 5s ease infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
        border: 1px solid #6F39F5;
    }

    .nav-mobile .sidebar ul {
        list-style: none;
        position: relative;
        padding: 0 20px;
    }

    .nav-mobile .sidebar ul p {
        font-family: poppins, sans-serif;
        color: var(--heading2-color);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .nav-mobile .sidebar ul li {
        margin: 10px 0;
        padding: 10px 20px;
        list-style: none;
        transition: all 0.3s ease;
    }

    .nav-mobile .sidebar ul li .nav-link-sidebar {
        font-family: poppins, sans-serif;
        color: var(--heading2-color);
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .nav-mobile .sidebar ul li:hover {
        background-color: #d1cfcf;
        border-radius: 5px;
    }

    .nav-mobile .sidebar ul li i {
        margin-right: 10px;
    }

    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 15, 20, 0.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(2px);
        z-index: 7;
    }

    .nav-mobile.active {
        left: 0;
    }

    .nav-mobile.active~#overlay {
        opacity: 1;
        visibility: visible;
    }


    /* hero section */
    .hero {
        width: 100%;
        height: 100vh;
        padding: 160px 30px 0 30px;
        align-content: center;
        position: relative;
        z-index: 2;
    }

    .hero .hero-container {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .hero .hero-container .hero-content h1 {
        font-family: "Montserrat", sans-serif;
        font-size: 35px;
        font-weight: 800;
        line-height: 1.1;
        color: var(--heading-color);
        margin: 0;
        z-index: 1;
    }

    .hero .hero-container .hero-content p {
        font-family: var(--default-font);
        font-size: 16px;
        color: color-mix(in srgb, #a09bb5 85%, #777 15%);
        line-height: 1.6;
        max-width: 480px;
        margin: 10px 0 40px 0;
        z-index: 1;
    }

    .hero .hero-container .hero-content .btn-hero {
        font-family: var(--nav-font);
        font-weight: 600;
        color: white;
        background: linear-gradient(135deg, #6F39F5 0%, #A478FF 100%);
        padding: 14px 26px;
        font-size: 15px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(111, 57, 245, 0.3);
    }

    .hero .hero-container .hero-content .btn-hero:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, #7b4bff 0%, #b28aff 100%);
    }

    .hero .hero-container .ic.soft {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: "Nunito", sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: #6F39F5;
        background: rgba(111, 57, 245, 0.1);
        border-radius: 9999px;
        padding: 6px 14px;
        margin-bottom: 10px;
        border: 1px solid rgba(111, 57, 245, 0.2);
        width: fit-content;
        transition: all 0.3s ease;
    }

    .hero .hero-container .ic.soft i {
        color: #6F39F5;
        font-size: 1rem;
    }

    .hero .hero-container .ic.soft:hover {
        background: #6F39F5;
        color: white;
    }

    .hero .hero-container .ic.soft:hover i {
        color: white;
    }

    .hero .image {
        justify-content: center;
        flex: 1;
        align-self: start;
        margin-top: 40px;
        display: flex;
    }

    .hero .image img {
        width: 100%;
        max-width: 380px;
        height: auto;
        border: 0.8px solid #aaaaaa;
        border-radius: 16px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        /* display: none; */
    }

    .hero .hero-container .hero-image .image img:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(111, 57, 245, 0.25);
    }
}