/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a90e2;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --card-bg: #ffffff;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif; /* Font modern */
    background: var(--bg-gradient);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

header p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 300;
}

/* Profile Card Styles */
.profile-card {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    gap: 50px;
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.profile-card:hover {
    transform: translateY(-5px);
}

/* Image Styles */
.image-container {
    flex-shrink: 0;
}

.image-wrapper {
    position: relative;
    padding: 10px;
    border: 2px dashed var(--primary-color); /* Efek border putus-putus estetik */
    border-radius: 50%;
}

.image-wrapper img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s;
}

.image-wrapper:hover img {
    filter: brightness(1.1);
}

/* Text Content Styles */
.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
}

.bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Social Media Styles */
.social-media .connect-text {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: #f0f2f5;
    padding: 10px 20px;
    border-radius: 15px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design (Mobile) */
@media (max-width: 768px) {
    body {
        align-items: flex-start; /* Agar bisa scroll di layar kecil */
    }

    header h1 {
        font-size: 32px;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .image-wrapper img {
        width: 180px;
        height: 180px;
    }

    .text-content h2 {
        font-size: 26px;
    }

    .icons {
        justify-content: center;
    }
}