/* assets/css/style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#0f172a;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #e2e8f0;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

.logo{
    font-size:24px;
    font-weight:800;
    color:#2563eb;
}

.menu{
    display:flex;
    gap:28px;
    align-items:center;
}

.menu a{
    text-decoration:none;
    color:#334155;
    font-weight:600;
    transition:0.25s;
}

.menu a:hover{
    color:#2563eb;
}

.btn-nav{
    background:#2563eb;
    color:#fff !important;
    padding:12px 20px;
    border-radius:14px;
}

.hamburger{
    display:none;
    width:44px;
    height:44px;
    border-radius:14px;
    align-items:center;
    justify-content:center;
    background:#eff6ff;
    color:#2563eb;
    cursor:pointer;
    font-size:20px;
}

/* =========================
   HERO
========================= */

.hero{
    max-width:1200px;
    margin:auto;
    padding:160px 24px 110px;
    text-align:center;
}

.badge{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:24px;
}

.hero h1 span{
    color:#2563eb;
}

.hero p{
    max-width:760px;
    margin:auto;
    color:#64748b;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:18px;
    font-weight:700;
    font-size:16px;
    transition:0.25s;
    box-shadow:0 10px 30px rgba(37,99,235,0.2);
}

.btn:hover{
    transform:translateY(-3px);
}

.checklist{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.checklist span{
    background:#fff;
    border:1px solid #e2e8f0;
    padding:12px 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
}

/* =========================
   STEPS
========================= */

.steps{
    max-width:1200px;
    margin:auto;
    padding:40px 24px 100px;
}

.section-title{
    text-align:center;
    font-size:44px;
    margin-bottom:60px;
    font-weight:800;
}

.section-title span{
    color:#2563eb;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.step-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    transition:0.25s;
}

.step-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.step-number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:22px;
    margin-bottom:24px;
}

.step-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.step-card p{
    color:#64748b;
    line-height:1.7;
}

/* =========================
   FOOTER
========================= */

.footer{
    margin-top:80px;
    background:#0f172a;
    color:#fff;
    padding:70px 24px 30px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer h2{
    font-size:28px;
    margin-bottom:16px;
}

.footer p{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-bottom{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    color:#94a3b8;
}

/* =========================
   WEBESKPOR SCROLL EFFECT
========================= */

.webeskpor{
    opacity:0;
    transform:translateY(90px) scale(.96);
    transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.16,1,.3,1);
}

.webeskpor.muncul{
    opacity:1;
    transform:translateY(0) scale(1);
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:17px;
    }

    .steps-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    .menu{
        position:absolute;
        top:82px;
        left:0;
        width:100%;
        background:#fff;
        border-bottom:1px solid #e2e8f0;

        flex-direction:column;
        align-items:flex-start;

        padding:28px 24px;
        gap:24px;

        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);

        transition:0.25s;
    }

    .menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .menu a{
        width:100%;
    }

    .btn-nav{
        width:100%;
        text-align:center;
    }

}

@media(max-width:600px){

    .hero{
        padding-top:130px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .section-title{
        font-size:32px;
    }

    .btn{
        width:100%;
    }

    .checklist{
        flex-direction:column;
    }

}

/* =========================
   JELAJAHI TOKO
========================= */

.explore-header{
    padding:150px 24px 70px;
    text-align:center;
}

.explore-container{
    max-width:900px;
    margin:auto;
}

.explore-badge{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}

.explore-header h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:24px;
    font-weight:800;
}

.explore-header h1 span{
    color:#2563eb;
}

.explore-header p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.explore-section{
    padding:0 24px 100px;
}

.explore-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.shop-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none;
    transition:0.25s;
}

.shop-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.shop-cover{
    width:100%;
    height:220px;
    background:#eff6ff;
    overflow:hidden;
}

.shop-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shop-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:64px;
}

.shop-content{
    padding:28px;
}

.shop-content h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.shop-content p{
    color:#64748b;
    margin-bottom:24px;
    line-height:1.7;
}

.shop-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2563eb;
    color:#fff;
    padding:14px 20px;
    border-radius:14px;
    font-weight:700;
}

/* MOBILE */

@media(max-width:600px){

    .explore-header{
        padding-top:130px;
    }

    .explore-header h1{
        font-size:38px;
    }

    .explore-header p{
        font-size:16px;
    }

}