/* Variabel Warna & Font */
:root {
    --bg-color: #ffffff;
    --header-bg-color: #eaf2f8; /* Biru sangat muda */
    --primary-text-color: #002366; /* Biru Navy */
    --secondary-text-color: #333333;
    --accent-color: #4a90e2; /* Biru lebih cerah untuk aksen */
    --font-heading: 'Lora', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Gaya Dasar */
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--secondary-text-color);
    margin: 0;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header / Hero Section */
#hero {
    background-color: var(--header-bg-color);
    padding: 60px 20px;
    text-align: center;
    color: var(--primary-text-color);
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin: 0;
}

#hero h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 10px 0;
}

#hero .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Gaya Umum Section */
section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    color: var(--primary-text-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

/* Tentang Saya */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--header-bg-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-family: var(--font-heading);
    color: var(--primary-text-color);
    margin-top: 20px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.skill-pill {
    background-color: var(--header-bg-color);
    color: var(--primary-text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Proyek */
.projects-grid {
    display: grid;
    gap: 50px;
}

.project-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-text-color);
    text-align: center;
    margin-top: 0;
}

.project-card img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #ddd;
}

/* Kontak / Footer */
footer {
    text-align: center;
}

footer h3 {
    font-family: var(--font-heading);
    color: var(--primary-text-color);
}

.contact-info div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* Font Awesome Icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/* Responsive untuk Mobile */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .skills-container {
        justify-content: center;
    }
}
