/* Font lokal */
@font-face {
    font-family: 'FontKamu';
    src: url('./assets/font/SFPRODISPLAYREGULAR.OTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Dasar halaman */
body {
    background-color: white;
    font-family: 'FontKamu', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    /* kiri lebih besar, kanan sedikit lebih kecil */
    padding: 12px 30px 12px 40px; /* atas kanan bawah kiri */
}

/* Logo kiri */
.nav-logo {
    text-decoration: none;
    color: #333;
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-logo:hover {
    color: #007bff;
}

/* Tombol kanan */
.info-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid black;
    color: black;
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;

    /* geser sedikit ke kiri */
    margin-right: 50px;
}

.info-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.info-btn:active {
    background-color: rgba(0, 0, 0, 0.2);
}

.info-btn .icon {
    width: 16px;
    height: 16px;
}

/* ===== KONTEN ===== */
.container {
    text-align: center;
    margin-top: 150px;
    padding: 0 15px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.description {
    font-size: 16px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsif */
@media (max-width: 600px) {
    .navbar {
        padding: 10px 20px 10px 25px; /* kanan dan kiri disesuaikan di HP */
    }

    .nav-logo {
        font-size: 18px;
    }

    .info-btn {
        font-size: 13px;
        padding: 5px 8px;
        margin-right: 5px; /* tetap ada sedikit jarak di kanan */
    }
}
