* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #1a1a2e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4aa5ff;
}

/* Sections */
section {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
#home {
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4aa5ff;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

#home::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(74, 165, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid #4aa5ff;
    box-shadow: 0 0 20px rgba(74, 165, 255, 0.3);
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(74, 165, 255, 0.5);
}

.download-btn {
    display: inline-block;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    background: #4aa5ff;
    border: 2px solid #4aa5ff;
}

.download-btn:hover {
    background: transparent;
    transform: translateY(-3px);
    color: #4aa5ff;
    box-shadow: 0 5px 15px rgba(74, 165, 255, 0.3);
}

/* Style untuk social icons */
.social-icons {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons .github:hover {
    color: #333;
}

.social-icons .linkedin:hover {
    color: #0077b5;
}

.social-icons .medium:hover {
    color: #00ab6c;
}


/* Experience Section */
#experience {
    background: #f5f6fa;
}

#experience-list{
    margin-top: 2rem;

    a{
        text-decoration: inherit;
        color: hsl(317, 53%, 48%);
    }

    a:hover{
        text-decoration: underline;
    }
}

.experience-card {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    max-width: 800px;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.experience-card .date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.experience-card ul{
    margin-left: 1rem;
}

/* Contact Section */
#contact {
    color: white;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(74, 165, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-me{
    max-width: 500px;
    
    p{
        margin: 2rem auto;
    }
}

.btn {
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #4aa5ff;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #3d8cd9;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Responsive design update */
@media (max-width: 968px) {
    .home-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .profile-image {
        width: 300px;
        height: 300px;
    }

    .social-icons {
        justify-content: center;
    }
}