@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body { background-color: #a467e984; color: #1a1a1a; line-height: 1.6; }

/* Navigasi Minimalis */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 10%; background: #fff; position: sticky; top: 0; z-index: 100;
}

.logo { font-weight: 700; font-size: 24px; color: #2563eb; cursor: default; }

nav ul li { display: inline-block; list-style: none; margin: 0 15px; }

nav ul li a {
    text-decoration: none; color: #1a1a1a; font-weight: 500; font-size: 14px;
    transition: 0.3s;
}

nav ul li a:hover, .active { color: #2563eb; }

/* Layout Konten Utama */
.container { padding: 60px 10%; min-height: 80vh; }

.hero { display: flex; align-items: center; justify-content: space-between; gap: 50px; }

.hero-text { flex: 1; }
.hero-text h1 { font-size: 55px; line-height: 1.1; margin-bottom: 20px; }
.hero-text span { color: #2563eb; }
.hero-text p { color: #666; margin-bottom: 30px; font-size: 18px; }

.hero-img img { width: 100%; max-width: 450px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }

/* Kartu untuk Pendidikan/Pengalaman/Prestasi */
.section-title { font-size: 32px; margin-bottom: 40px; position: relative; display: inline-block; }
.section-title::after { content: ''; width: 50%; height: 4px; background: #2563eb; position: absolute; bottom: -5px; left: 0; }
.card {
    background: #fdfdfd; padding: 30px; border-radius: 20px;
    margin-bottom: 20px; border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.card:hover { border-color: #2563eb; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.card h3 { color: #2563eb; margin-bottom: 5px; }
.card .date { font-weight: 600; font-size: 14px; color: #888; margin-bottom: 10px; display: block; }

.badge {
    display: inline-block; background: #eef2ff; color: #2563eb;
    padding: 5px 15px; border-radius: 8px; margin: 5px; font-weight: 600;
}

/* Tombol */
.btn {
    text-decoration: none; padding: 12px 30px; border-radius: 10px;
    font-weight: 600; display: inline-block; transition: 0.3s;
}
.btn-dark { background: #1a1a1a; color: #fff; }
.btn-dark:hover { opacity: 0.8; }

/* Responsive */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    nav ul { display: none; }
}
img {
  border-radius: 70%;
}
.profil-foto {
  border-radius: 75%;
}