
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d0d0d; 
    color: #fff; 
    font-family: 'Poppins', sans-serif; 
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Navbar Styling --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.7); 
    backdrop-filter: blur(10px); 
    z-index: 1000;
    padding: 10px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 10px 40px; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}

.logo-container {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
}

.logo-monogram {
    width: 50px; 
    height: 50px; 
    object-fit: contain;
}

.logo-text {
    font-size: 0.5rem; 
    font-weight: 500;
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: rgba(255, 255, 255, 0.9); 
    margin-top: 5px; 
}

/* Hamburger Icon (Sembunyikan di Desktop) */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001; 
}

/* Navbar Menu Kanan */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px; 
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px; 
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s linear;
}

.nav-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.social-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s linear;
}

.social-icon-link:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

.cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s linear;
}

.cta-button:hover {
    background-color: #fff; 
    border-color: #fff; 
    color: #000;
}


/* --- Gaya Home Page (Hero Section) --- */
#HomePage {
    background-color: #0d0d0d; 
    background-image: url('Assets/Background/Background_Intro.jpg'); 
    background-size: cover;
    background-position: center;
    padding-top: 150px; 
    padding-bottom: 80px; 
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr; 
    gap: 60px; 
    align-items: center; 
}

.hero-text-content h1 {
    font-size: 3.5rem; 
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff; 
}

.job-title {
    font-size: 1.8rem; 
    font-weight: 500;
    margin-bottom: 20px;
    color: #c084fc; 
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 0.15em solid #fff;
    animation: typing 4s steps(40,end) infinite, blink-caret 0.75s step-end infinite;
    animation-fill-mode: forwards;
}

.hero-text-content p {
    font-size: 1.1rem; 
    line-height: 1.8; 
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8); 
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px; 
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 50px; 
    background: transparent; 
    font-weight: 600;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: all 0.3s ease;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; 
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: buttonShine 2s infinite;
}

.hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    border-color: rgba(255, 255, 255, 0.3); 
}

/* Mengambang Profil Card */
.hero-profile-card-container { display: flex; justify-content: center; align-items: center; }

.profile-card {
    position: relative;
    width: 100%;
    max-width: 320px; 
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 20px; 
    background: rgba(13, 13, 13, 0.4); 
    backdrop-filter: blur(10px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    display: flex;
    flex-direction: column;
    align-items: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.profile-card:hover {
    box-shadow: -20px -20px 50px rgba(60, 160, 240, 0.4), 20px 20px 50px rgba(192, 132, 252, 0.4);
}

.profile-img { width: 100%; border-radius: 15px; object-fit: cover; }

.card-name {
    font-size: 2.2rem; font-weight: 700; margin-top: 10px; margin-bottom: 5px; 
    background-image: linear-gradient(to right, #60a0f0 0%, #b323c9 100%); 
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.card-title { font-size: 0.8rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; text-transform: uppercase;}

.card-footer-info {
    width: calc(100% - 20px); padding: 15px 20px;
    position: absolute; bottom: 10px; left: 10px; right: 10px; 
    border: 1px solid rgba(60, 160, 240, 0.4); border-radius: 50px; 
    background: rgba(13, 13, 13, 0.7); backdrop-filter: blur(10px); 
    display: flex; justify-content: space-between; align-items: center; 
}

.card-footer-info .footer-right {
    display: flex;
    align-items: center;
    gap: 8px; 
}

.card-footer-info .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGreen 2s infinite;
}

.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-avatar { width: 30px; height: 30px; border-radius: 50%; }
.footer-handle { font-size: 0.95rem; color: rgba(255, 255, 255, 0.8); }
.footer-status { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); }

/* Animasi */
@keyframes typing { 0%, 90% {width: 0;} 40%, 60% {width: 100%;} 100% {width: 0;} }
@keyframes blink-caret { from, to {border-color: transparent;} 50% {border-color: #fff;} }
@keyframes buttonShine { 0% {left: -100%;} 20%, 100% {left: 200%;} }

@media (max-width: 900px) {
    @media (max-width: 900px) {
    /* --- 1. MEMUNCULKAN & MENGATUR BURGER MENU --- */
    .menu-toggle {
        display: block; /* Tampilkan ikon garis tiga di mobile */
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Sembunyikan panel di luar layar sebelah kanan */
        width: 260px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
        gap: 35px;
        z-index: 999;
    }

    .navbar-menu.active {
        right: 0; /* Tarik panel masuk ke layar saat ikon diklik */
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .social-icons {
        width: 100%;
        justify-content: flex-start;
    }

    .cta-button {
        width: 100%;
    }

    /* --- 2. PENGATURAN HERO SECTION DI MOBILE --- */
    .hero-container { 
        display: flex;
        flex-direction: column;
        gap: 35px; 
        text-align: center; 
    }
    
    .hero-text-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-profile-card-container {
        order: 1;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-text-content h1 { 
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        white-space: nowrap; 
    }
    
    .job-title {
        font-size: 1.2rem;
    }

    .hero-btn { 
        justify-content: center; 
        width: fit-content; 
        margin: 0 auto; 
        padding: 12px 30px;
    }

    .profile-card { 
        max-width: 280px; 
    }
}
}

/* --- Gaya Bagian Skills --- */
#SkillsSection {
    background-image: url(Assets/Background/Background_Skills.jpg);
    background-size: cover; background-position: center;
    background-blend-mode: overlay; padding: 80px 0; color: #fff;
}

.skills-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 60px; }
.header-small { color: #b0b0b0; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.header-main { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
.header-desc { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.skills-category {
    background-color: rgba(27, 27, 27, 0.7); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px; padding: 30px; position: relative;
}
.hard-skills-category { box-shadow: 0 0 40px rgba(60, 160, 240, 0.15); }
.soft-skills-category { box-shadow: 0 0 40px rgba(192, 132, 252, 0.15); }

.category-header { display: flex; align-items: center; margin-bottom: 30px; }
.category-icon-glow {
    width: 50px; height: 50px; border-radius: 10px;
    background-color: rgba(60, 160, 240, 0.1); color: #60a0f0;
    display: flex; justify-content: center; align-items: center; font-size: 1.5rem; margin-right: 20px;
    box-shadow: 0 0 20px rgba(60, 160, 240, 0.3);
}
.soft-skills-category .category-icon-glow { background-color: rgba(192, 132, 252, 0.1); color: #c084fc; box-shadow: 0 0 20px rgba(192, 132, 252, 0.3); }

.category-text h3 { font-size: 1.6rem; margin-bottom: 5px; }
.category-text p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; }

.skills-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.skill-card {
    background-color: rgba(27, 27, 27, 0.7); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}
.skill-card.show { opacity: 1; transform: translateY(0); }
.skill-card:hover { box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); transform: translateY(-5px); }

.skill-info { display: flex; justify-content: space-between; align-items: center; }
.skill-info h3 { font-size: 1.1rem; font-weight: 600; }
.progress-bar-container { display: flex; flex-direction: column; gap: 5px; }
.progress-details { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.progress-details span { color: #fff; }

.progress-bar { width: 100%; height: 6px; background-color: rgba(255, 255, 255, 0.1); border-radius: 10px; position: relative; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; position: absolute; left: 0; top: 0; transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: 0 0 10px currentColor; }
.hard-skill-fill { background-color: #60a0f0; color: rgba(60, 160, 240, 0.5); }
.soft-skill-fill { background-color: #c084fc; color: rgba(192, 132, 252, 0.5); }

@media (max-width: 1000px) { .skills-grid { grid-template-columns: repeat(1, 1fr); } }
@media (max-width: 600px) { .skills-list { grid-template-columns: repeat(1, 1fr); } }

/* --- GAYA BAGIAN EXPERIENCES --- */
#ExperiencesSection {
    background-image: url(Assets/Background/Background_Experiences.jpg); background-size: cover;
    background-position: center; background-blend-mode: overlay; padding: 100px 0; color: #fff; position: relative;
}
.experiences-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::after {
    content: ''; position: absolute; width: 4px; background: linear-gradient(to bottom, #60a0f0, #c084fc);
    top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 10px; box-shadow: 0 0 15px rgba(192, 132, 252, 0.4);
}

.timeline-item {
    padding: 10px 40px; position: relative; width: 50%; opacity: 0;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.15); 
}
.timeline-item.left { left: 0; transform: translateX(-80px); }
.timeline-item.right { left: 50%; transform: translateX(80px); }
.timeline-item.show-timeline { opacity: 1; transform: translateX(0); }

.timeline-dot {
    position: absolute; width: 20px; height: 20px; background-color: #0d0d0d;
    border: 4px solid #c084fc; top: 25px; border-radius: 50%; z-index: 1; right: -10px;
    box-shadow: 0 0 15px #c084fc, inset 0 0 5px #c084fc;
}
.right .timeline-dot { left: -10px; border-color: #60a0f0; box-shadow: 0 0 15px #60a0f0, inset 0 0 5px #60a0f0; }

.experience-card {
    background-color: rgba(27, 27, 27, 0.7); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px; padding: 30px; position: relative; backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item.show-timeline:hover .experience-card { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(192, 132, 252, 0.15); }
.timeline-item.right.show-timeline:hover .experience-card { box-shadow: 0 10px 30px rgba(60, 160, 240, 0.15); }

.timeline-date { display: inline-block; padding: 5px 12px; background: rgba(255, 255, 255, 0.1); color: #c084fc; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; }
.right .timeline-date { color: #60a0f0; }
.experience-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; color: #fff; }
.experience-org { font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, 0.7); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.experience-desc { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 20px; }
.experience-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.experience-tags span { font-size: 0.8rem; padding: 5px 12px; background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; color: rgba(255, 255, 255, 0.8); }

@media (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
    .timeline-item.left, .timeline-item.right { left: 0; }
    .timeline-dot, .right .timeline-dot { left: 21px; top: 30px; }
    .timeline-item.right { transform: translateX(-50px); }
}

/* --- GAYA BAGIAN PROJECTS --- */
#ProjectsSection {
    background-image: radial-gradient(circle at top right, rgba(192, 132, 252, 0.567) 0%, transparent 45%),
                      radial-gradient(circle at bottom left, rgba(96, 161, 240, 0.511) 0%, transparent 45%);
    padding: 100px 0; color: #fff;
}
.projects-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 40px; }

.project-card {
    background-color: rgba(27, 27, 27, 0.7); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
    backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0; transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.project-card.show-project { opacity: 1; transform: translateY(0) scale(1); }
.project-card:hover {
    box-shadow: 0 15px 40px rgba(192, 132, 252, 0.15), 0 15px 40px rgba(96, 160, 240, 0.15);
    border-color: rgba(192, 132, 252, 0.3); transform: translateY(-10px) scale(1.02) !important;
}

.project-image { width: 100%; height: 220px; position: relative; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-image img { transform: scale(1.1); }

.project-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13, 13, 13, 0.7);
    display: flex; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }

.view-btn {
    padding: 10px 20px; background: linear-gradient(45deg, #60a0f0, #c084fc); color: #fff;
    border-radius: 30px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
    transform: translateY(20px); transition: all 0.3s ease;
}
.project-card:hover .view-btn { transform: translateY(0); }
.view-btn:hover { box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }

.project-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.project-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
.project-tags span { font-size: 0.75rem; font-weight: 600; color: #c084fc; background: rgba(192, 132, 252, 0.1); padding: 4px 10px; border-radius: 4px; }
.project-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.project-desc { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }

/* --- GAYA BAGIAN FOOTER --- */
.footer-section { background-color: #050505; padding: 100px 0 30px 0; position: relative; overflow: hidden; }
.footer-section::before {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 250px;
    background: radial-gradient(ellipse at bottom right, rgba(192, 132, 252, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(96, 161, 240, 0.15) 0%, transparent 60%);
    filter:blur(40px);
    z-index: 0;
    pointer-events: none;
    
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }

.footer-cta { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.availability-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 25px; }
.pulse-dot { width: 8px; height: 8px; background-color: #2ecc71; border-radius: 50%; animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); } }

.footer-cta h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; background: linear-gradient(to right, #fff, #b0b0b0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-cta p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 35px; }
.email-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; background: linear-gradient(45deg, #60a0f0, #c084fc); color: #fff; border-radius: 50px; font-size: 1.1rem; font-weight: 600; transition: all 0.3s ease; }
.email-btn:hover { box-shadow: 0 10px 25px rgba(192, 132, 252, 0.3); transform: translateY(-3px); }

.footer-divider { height: 1px; width: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); margin: 0 auto 50px auto; }

.footer-bottom { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo-monogram { width: 50px; height: 50px; }
.footer-brand .logo-text { font-size: 0.8rem; margin-top: 10px; margin-bottom: 15px; }
.brand-desc { font-size: 0.95rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; max-width: 300px; }

.footer-links h4, .footer-socials h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; color: #fff; }

/* Gaya Kontak Baru */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #fff;
}

.contact-list i {
    color: #c084fc;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

.fade-up-element { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up-element.show-element { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .footer-bottom { grid-template-columns: 1fr; text-align: left; }
    .brand-desc { margin: 0; }
    .footer-cta h2 { font-size: 2rem; }
}