/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #f9f9f9;
    color: #2a2a2a;
    line-height: 1.6;
}
a {
    color: #1a5fb4;
    text-decoration: none;
}
.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* HERO */
.hero {
    background: #ffffff;
    border-bottom: 2px solid #eaeaea;
    padding: 60px 0;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* FOTO */
.photo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px; /* kesan arsitektural, bukan bulat */
    border: 2px solid #e0e0e0;
}

/* IDENTITAS */
.identity h1 {
    font-size: 2.8rem;
    font-weight: 700;
}
.identity .role {
    font-size: 1.3rem;
    color: #555;
    margin: 6px 0;
}
.identity .contact {
    font-size: 0.95rem;
    color: #444;
}

/* SECTION */
main section {
    margin: 48px 0;
}
main h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 5px solid #1a5fb4;
}

/* ITEM */
.item {
    margin-bottom: 24px;
}
.item h3 {
    font-size: 1.3rem;
}
.item .sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 6px;
}

/* SKILLS */
.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
.skills-list li {
    background: #eaeaea;
    padding: 10px;
    text-align: center;
    font-size: 0.95rem;
    border-radius: 4px;
}

/* FOOTER */
footer {
    border-top: 1px solid #eaeaea;
    padding: 18px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
}
