body {
    margin: 0px;
    font-family: "Lexend Zetta", sans-serif;
}

header {
    width: 100%;
    font-family: "Lexend Zetta", sans-serif;
    position: absolute;
    z-index: 10; 
    background-color: transparent;
    margin: 0;
    
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 36px 24px 36px;
    border-bottom: 1px solid #000;
}

.main-nav a{
    color: #000;
    font-family: "Lexend Zetta";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    font-optical-sizing: auto;
    text-decoration-line: none;
    line-height: 1;

    transition: color 0.3s ease, font-weight 0.3s ease;
    padding-bottom: 2px; 
}

.main-nav a:hover {
    color: #0099ff;
    font-weight: 300;
}

.main-nav a[style*="opacity: 0.2;"] {
    pointer-events: none; /* Disable interaction */
    text-decoration: none;
}

.site-title {
    margin: 0;
}

.site-title a{
    color: #000;
    font-family: "Lexend Zetta";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    font-optical-sizing: auto;
}

.site-title a:hover {
    color: #0099ff;
    font-weight: 300;
    border-bottom: none;
    text-decoration-line: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: relative;
    top: 5px;
}

.section-about {
    /* Memberi jarak dari header */
    padding-top: 120px; 
    padding-left: 36px;
    padding-right: 52px;
    margin-bottom: 0px;
    /* Menggunakan Grid untuk menyejajarkan paragraf */
    display: grid;
    grid-template-columns: 20% 80%; /* Kolom 1 (Judul) = 20%, Kolom 2 (Detail) = 80% */
    gap: 20px; 
}

.about-text {
    /* Properti umum teks (Lexend Zetta Light/Fustat Regular) */
    font-family: "Fustat", sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ==========================================================
   SECTION RESUME (FULL RESUME)
   ========================================================== */

.section-resume, .section-services {
    padding-top: 72px;
    padding-left: 36px;
    padding-right: 36px;

    /* Gunakan Grid untuk membagi judul (FULL RESUME) dan konten */
    display: grid;
    grid-template-columns: 20% 80%; /* Kolom 1 (Judul) = 20%, Kolom 2 (Detail) = 80% */
    gap: 20px;
}

.section-title {
    /* Judul: FULL RESUME / SERVICES */
    font-family: "Lexend Zetta", sans-serif;
    font-size: 14px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding-top: 0px; /* Sesuaikan agar sejajar dengan detail-title */
}

.section-title a{
    color: #000;
    font-family: "Lexend Zetta";
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: 1;
    font-optical-sizing: auto;
    text-decoration-line: none;
    text-decoration-thickness: 0.25px;
    text-underline-offset: 2px;

}

.section-title a:hover {
    color: #0099ff;
    font-weight: 200;
    text-decoration-line: none;
    text-decoration-thickness: 0.25px;
    text-underline-offset: 2px;
}

.section-title svg {
    margin-left: 8.5px;
    margin-top: 0px;
    margin-bottom:2.75px;
    vertical-align: middle;
    fill: #000;
}

.section-title a:hover svg {
    fill: #0099ff;
}

.resume-details {
    /* Kontainer untuk semua detail (Experience, Education, Contact) */
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.detail-column {
    /* Kolom individu (Experience, Education, Contact) */
    flex: 1; /* Agar kolom membagi ruang secara merata */
}

.detail-title {
    /* Judul kecil: EXPERIENCE, EDUCATION, CONTACT */
    font-family: "Lexend Zetta", sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 1.6;
    margin-top: 1px;
    margin-bottom: 18px;
}

.job-title {
    font-family: "Fustat", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin: 0px;
}

.contact-item {
    font-family: "Fustat", sans-serif;
    font-size: 16px;
    line-height: 2;
    margin: 0px;
}

.contact-item a{
    font-family: "Fustat", sans-serif;
    font-size: 16px;
    line-height:26px;
    margin: 0px;
    color: #000;
    text-decoration-line: underline;
    text-decoration-thickness: 0.25px;
    text-underline-offset: 2px;
}

.contact-item a:hover {
    color: #0099ff;
    font-weight: 300;
    text-decoration-line: underline;
    text-decoration-thickness: 0.25px;
    text-underline-offset: 2px;
}

.job-duration {
    margin-top: 1px;
    margin-bottom: 20px; /* Jarak antar item experience */
    font-size: 12px;
    font-family: "Fustat", sans-serif;
    color: #b1b1b1;
}

/* ==========================================================
   SECTION SERVICES
   ========================================================== */

.service-details {
    /* Sama seperti resume-details, 3 kolom */
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 120px;
}

.service-list-column {
    flex: 1;
}

.service-list-column ul {
    list-style: none; /* Hilangkan bullet point default */
    padding: 0;
    margin: 0;
}

.service-list-column li {
    font-family: "Fustat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.info-footer {
    padding: 20px 50px 20px 36px;
    border-top: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-family: "Fustat", sans-serif;
    font-size: 14px;
    color: #666;
}

.footer-nav {
    display: flex;
    gap: 15px;
}

.footer-btn {
    text-decoration: none;
    color: #000;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid #000;
    transition: background-color 0.3s;
}

.footer-btn:hover {
    background-color: #f0f0f0;
}


@media (max-width: 768px) {

    .main-nav {
        padding: 12px 18px 16px 18px; /* Reduce padding on mobile */
    }

}