body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    margin: 0 10px;
}

.section {
    padding: 40px 0;
    border-bottom: #ccc 1px solid;
    background: #fff;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 2em;
}

/* Tentang Saya */
.about-me p {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Keahlian */
.skills-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.skill-category {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-basis: 45%;
}

.skill-category h3 {
    margin-top: 0;
    color: #555;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    padding: 8px 0;
}

.skill-category li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Pengalaman & Proyek */
.experience-item, .project-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.experience-item h3, .project-item h3 {
    margin-top: 0;
    color: #007BFF;
}

.duration {
    font-style: italic;
    color: #777;
    margin-top: -10px;
}

.project-link {
    display: inline-block;
    background: #007BFF;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background: #0056b3;
}

/* Kontak */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

/* Styling untuk Foto Profil */
.profile-pic {
    width: 180px; /* Atur lebar foto */
    height: 180px; /* Atur tinggi foto */
    border-radius: 50%; /* Membuat foto menjadi bulat */
    object-fit: cover; /* Memastikan gambar mengisi area tanpa terdistorsi */
    margin-top: 25px; /* Jarak antara teks di atasnya dan foto */
    border: 4px solid #007bff; /* Border berwarna biru di sekitar foto */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Efek bayangan */
    transition: transform 0.3s ease-in-out; /* Efek transisi saat hover */
}

.profile-pic:hover {
    transform: scale(1.05); /* Sedikit membesar saat kursor di atasnya */
}


/* Gaya untuk Tombol Unduh CV */
.cv-download {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.btn-download {
    display: inline-block;
    background-color: #28a745; /* Warna hijau yang menarik */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-download:hover {
    background-color: #218838; /* Lebih gelap saat di-hover */
    transform: translateY(-2px); /* Efek sedikit naik saat di-hover */
}

.btn-download i {
    margin-right: 8px;
}

/* Styling untuk Footer dan Tautan Kontak */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

footer .container {
    padding: 0 20px;
}

footer h2 {
    color: #fff; /* Pastikan judul 'Kontak' berwarna putih */
}

.contact-links {
    margin-top: 20px;
}

.contact-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px; /* Memberi jarak antar tautan */
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-links a i {
    margin-right: 5px;
}

.contact-links a:hover {
    color: #007bff; /* Tautan berubah warna saat di-hover */
}

footer p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #bbb;
}

/* Modifikasi Gaya untuk Setiap Kotak Proyek */
.project-item {
    /* Gaya yang sudah ada */
    background: #fff;
    padding: 25px; /* Sedikit lebih lega */
    border-radius: 10px; /* Sudut lebih melengkung */
    margin-bottom: 30px; /* Jarak antar proyek lebih besar */
    
    /* Gaya baru: Bayangan 3D dan Transisi */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Bayangan yang lebih menonjol */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transisi halus */
}

/* Efek Hover: Membuat kotak proyek "terangkat" saat kursor di atasnya */
.project-item:hover {
    transform: translateY(-5px); /* Kotak terangkat 5px ke atas */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Bayangan lebih gelap */
}

/* Gaya untuk Judul Proyek */
.project-item h3 {
    margin-top: 0;
    color: #007BFF;
    border-bottom: 2px solid #eee; /* Garis pemisah tipis */
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Gaya untuk Deskripsi Proyek */
.project-item p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    text-align: justify; /* Deskripsi lebih rapi */
}

/* Gaya untuk Tautan Proyek (GitHub dan Unduh) */
.project-link {
    /* Gaya yang sudah ada */
    display: inline-block;
    padding: 10px 18px; /* Padding lebih besar */
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0; /* PENTING: Menghilangkan margin bawaan browser */
    padding: 0; /* PENTING: Menghilangkan padding bawaan browser */
    color: #333;
    background-color: #f4f4f4;
}
/* Styling untuk Footer (Kontak) */
footer {
    /* Gaya dasar footer */
    background: #333; /* Warna Hitam/Gelap */
    color: #fff;
    text-align: center;
    padding: 40px 0; /* Memberi ruang vertikal, tanpa batas horizontal */
    
    /* TIDAK ADA 'MAX-WIDTH' DI SINI */
    width: 100%; /* Memastikan lebar 100% dari parent */
}