:root {
    --background: #fffdf5; 
    --foreground: #1a1a1a;
    --accent-orange: #f59e0b; /* Warna oranye Rafael */
    --muted: #666666;
    --border: #e5e5e0;
    --card-bg: #f0f0eb;
}

body.dark-theme {
    --background: #0a0a0a;
    --foreground: #ededed;
    --muted: #a3a3a3;
    --border: #1f1f1f;
    --card-bg: #171717;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    transition: all 0.3s ease;
}

/* Header & Typography */
h1 { font-size: 1.5rem; color: var(--accent-orange); margin-bottom: 0.5rem; }
h2 { font-size: 1.1rem; color: var(--muted); font-weight: 400; margin-bottom: 1.5rem; }
.content h3 a, 
.project-info h3 a {
    color: var(--foreground); /* Mengikuti warna teks utama (putih/hitam) */
    text-decoration: underline;
    text-underline-offset: 4px; /* Memberi jarak agar lebih clean */
    text-decoration-color: var(--muted); /* Warna garis bawah lebih redup */
    transition: opacity 0.2s ease;
}
.content h3 a:hover, 
.project-info h3 a:hover {
    opacity: 0.3;
    text-decoration-color: var(--foreground);
}
p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

.location {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Social Links - Kotak Ikon */
.social-links ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.social-links a, #theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--foreground);
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
}

.social-links a:hover, #theme-toggle:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Career & Projects */
#career h2, #projects h2 {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-top: 3rem;
}

.timeline-item, .project-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.location-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 1.5rem 0;
}

#lang-toggle {
    font-family: monospace;
    font-weight: bold;
    font-size: 0.75rem;
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--foreground);
    cursor: pointer;
    transition: 0.2s;
}

#lang-toggle:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.location-item, .status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--muted);
}

p.coming-soon{
    text-align: center;
    width: 100%;
    margin-top: 4rem;
    color: var(--muted-foreground);
    font-family: monospace;
}

.icon-locate {
    width: 14px;
    height: 14px;
}

.separator-slash {
    color: var(--border);
    font-size: 0.8rem;
}

.dot-green {
    height: 8px;
    width: 8px;
    background-color: #22c55e; /* Hijau terang */
    border-radius: 50%;
    display: inline-block;
}

/* Efek Shimmer (Teks Berkilau) */
.shimmer-text {
    display: inline-block;
    background: linear-gradient(
        90deg, 
        var(--muted) 0%, 
        var(--foreground) 50%, 
        var(--muted) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* PENTING: Menghapus warna asli teks */
    animation: shimmer 7s linear infinite;
}

.year { font-family: monospace; font-size: 0.85rem; color: var(--muted); }

.project-image {
    background: var(--card-bg);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid var(--border);
    margin-top: 1rem;
}

.project-image img {
    width: 100%;
    border-radius: 10px;
}

.separator { border: 0; border-top: 1px solid var(--border); margin: 3rem 0; }

footer {
    text-align: center;
    margin-top: 5rem;
    font-size: 0.8rem;
    color: var(--muted);
}
/* Responsive */
@media (max-width: 600px) {
    .timeline-item, .project-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}   