/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Hero Section */
.hero {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #04AA6D;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #04AA6D;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Navigasi */
nav {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    sticky;
    top: 0;
    z-index: 100;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    padding: 20px;
    display: block;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #04AA6D;
    border-bottom: 3px solid #04AA6D;
}

/* Main Content */
.card {
    background: white;
    margin: 30px 0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h2, h3 {
    margin-bottom: 20px;
    border-left: 5px solid #04AA6D;
    padding-left: 15px;
}

/* Grid Gallery - Ini yang bikin rapi */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.desc {
    padding: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #04AA6D;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-wrapper {
        text-align: center;
    }
    .nav-links {
        flex-wrap: wrap;
    }
    .nav-links a {
        padding: 10px;
    }
}
/* Update pada bagian Tabel */
th, td {
    padding: 15px 20px; /* Jarak atas-bawah 15px, kiri-kanan 20px */
    text-align: left;
    border-bottom: 1px solid #eee; /* Garis tipis antar baris agar lebih elegan */
}

/* Memberikan jarak antar kolom tabel agar tidak rapat */
table {
    width: 100%;
    border-collapse: separate; /* Mengubah dari collapse ke separate jika ingin jarak khusus */
    border-spacing: 0; 
    margin: 10px 0;
}

/* Styling untuk Task List */
.task-list {
    list-style: none;
    padding: 0;
}

.task-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.task-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #04AA6D;
    font-weight: bold;
}

/* Styling untuk Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; /* Jarak antar kolom skill */
    margin-top: 15px;
}

.skill-category {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #04AA6D;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.02);
}

.skill-category h4 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.skill-category p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}
