:root { 
    --bg: #f8f8f8; 
    --black: #111111; 
    --orange: #ff5c28; 
    --blue: #4569fb; 
    --yellow: #ffde59; 
}

* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none; }

body { 
    background-color: var(--bg); 
    background-image: radial-gradient(#e2e2e2 1.2px, transparent 1.2px); 
    background-size: 30px 30px; 
    background-attachment: fixed; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    color: var(--black); 
    overflow-x: hidden; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* NAVBAR */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; position: relative; z-index: 1000; }
.nav-left { display: flex; align-items: center; gap: 15px; z-index: 1002; }
.logo-wrapper { width: 44px; height: 44px; border: 2px solid var(--black); background: var(--black); border-radius: 10px; overflow: hidden; }
.main-logo { width: 100%; height: 100%; object-fit: cover; }
.nav-info { display: flex; flex-direction: column; line-height: 1.2; }
.nav-name { font-size: 16px; font-weight: 800; color: var(--black); }
.nav-role { font-size: 12px; color: #777; }

.nav-right { display: flex; gap: 30px; align-items: center; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.nav-link { color: var(--black); font-weight: 600; font-size: 14px; transition: 0.3s ease; }
.nav-link:hover { color: var(--orange); }

.btn-orange { 
    background: var(--orange); 
    color: white !important; 
    padding: 12px 28px; 
    border-radius: 50px; 
    font-weight: 700; 
    box-shadow: 4px 4px 0 var(--black); 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: inline-block;
}
.btn-orange:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--black); }

.burger-menu { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1002; }
.burger-menu span { width: 28px; height: 3px; background: var(--black); transition: 0.3s; border-radius: 2px; }

/* HERO */
.hero { padding: 40px 0; position: relative; text-align: center; }
.main-title-container { position: relative; width: 100%; padding: 120px 0; display: flex; justify-content: center; align-items: center; }
.hero-title { font-size: clamp(80px, 18vw, 220px); font-weight: 800; text-transform: lowercase; line-height: 0.8; }

.status-label { 
    position: absolute; left: 0%; top: 20%; background: var(--blue) !important; color: white !important; 
    border-radius: 50px; border: 3px solid var(--black); padding: 10px 22px; font-weight: 800; 
    box-shadow: 6px 6px 0 var(--black); transform: rotate(-5deg); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; z-index: 10; 
}
.badge-year { 
    position: absolute; right: 0%; bottom: 20%; background: var(--yellow); border: 3px solid var(--black); 
    padding: 10px 22px; font-weight: 800; box-shadow: 6px 6px 0 var(--black); 
    transform: rotate(5deg); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    cursor: pointer; z-index: 10; 
}

.status-label:hover, .badge-year:hover { transform: rotate(0deg) scale(1.05) translateY(-10px); box-shadow: 12px 12px 0 var(--black); }

.hero-footer { display: flex; justify-content: center; margin-top: 40px; }
.scroll-down { font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--orange); letter-spacing: 2px; }

/* ABOUT & EXPERIENCE */
.about-section { padding: 100px 0; border-top: 2px solid var(--black); margin-top: 60px; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 100px; text-align: left; }
.section-title { font-size: 60px; font-weight: 800; margin-bottom: 25px; }
.dot-orange { color: var(--orange); }
.about-text { font-size: 24px; line-height: 1.6; margin-bottom: 40px; }

.tag { 
    display: inline-block; padding: 8px 18px; border: 2px solid var(--black); background: white; 
    font-weight: 700; box-shadow: 4px 4px 0 var(--black); margin-right: 10px; margin-bottom: 15px; 
    transition: all 0.3s ease; cursor: pointer; 
}
.tag:hover { background: var(--yellow); transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--black); }

.exp-item { display: flex; justify-content: space-between; padding: 25px 0; border-bottom: 1px solid #ddd; }
.exp-content { text-align: right; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .burger-menu { display: flex; }

    .nav-right { 
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; 
        background: var(--bg); flex-direction: column; justify-content: center; 
        gap: 30px; z-index: 1001; padding: 40px;
    }
    .nav-right.active { right: 0; }
    .nav-right .nav-link { font-size: 28px; font-weight: 800; }

    .main-title-container { flex-direction: column; padding: 60px 0; gap: 20px; }
    .hero-title { font-size: 70px; }
    
    .status-label, .badge-year { 
        position: relative; left: auto; right: auto; top: auto; bottom: auto;
        transform: none !important; display: block; width: 100%; max-width: 300px;
        margin: 10px auto; text-align: center; font-size: 14px;
    }
    .status-label:hover, .badge-year:hover { transform: translateY(-5px); }

    .about-grid { grid-template-columns: 1fr; gap: 50px; text-align: left; }
    .section-title { font-size: 45px; }
    .about-text { font-size: 18px; }
    .exp-item { flex-direction: column; align-items: flex-start; gap: 8px; }
    .exp-content { text-align: left; }
}

/* WORK SECTION - RATA DENGAN ABOUT */
.work-section { 
    padding: 80px 0; 
    border-top: 1px solid rgba(17, 17, 17, 0.1); 
    margin-top: 20px;
    width: 100%;
}

.work-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px; 
    margin-top: 40px; 
}

.work-card { 
    background: white; 
    border: 2px solid var(--black); 
    box-shadow: 6px 6px 0 var(--black); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* KUNCI BIAR GAMBAR GAK BOCOR */
    width: 100%;
}

.work-card:hover { 
    transform: translate(-6px, -6px); 
    box-shadow: 12px 12px 0 var(--black); 
}

.work-image-wrapper { 
    width: 100%; /* Paksa width ikut card */
    aspect-ratio: 16 / 11; 
    overflow: hidden; 
    border-bottom: 2px solid var(--black); 
    position: relative; /* Jaga konteks visual */
}

.work-image-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; /* Buang whitespace di bawah gambar */
}

.work-info { 
    padding: 24px; 
    text-align: left; 
}

.work-meta { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 12px; 
}

.work-category { font-weight: 800; text-transform: uppercase; font-size: 11px; color: var(--orange); }
.work-year { font-weight: 600; font-size: 11px; color: #888; }
.work-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; text-transform: lowercase; }
.work-desc { font-size: 15px; color: #666; line-height: 1.5; }

/* MOBILE FIX - ANTI BOCOR */
@media (max-width: 768px) {
    .work-grid { 
        grid-template-columns: 1fr; 
        gap: 32px; 
        width: 100%;
    }
    
    .work-card {
        width: 100%;
        margin: 0 auto;
    }

    .work-image-wrapper {
        aspect-ratio: 4 / 3; /* Sedikit lebih kotak di mobile biar enak dilihat */
    }

    .work-card:hover { 
        transform: translateY(-4px); 
        box-shadow: 10px 10px 0 var(--black); 
    }
}
