:root {
    --primary: #6EC1E4; /* Tombol, link aktif */
    --secondary: #FFF8F0; /* Background utama */
    --accent: #4054B2; /* Header, judul penting */
    --support: #A2D5C6; /* Aksen tambahan */
    --text: #2D2D2D; /* Teks utama */
    --text-muted: #555555; /* Teks sekunder */
    --border: #CCCCCC; /* Border netral */
    --surface: #ffffff; /* card surface */
    --bg: var(--secondary);
    --bg-soft: #fffefc;
    --shadow-soft: 0 18px 40px rgba(45, 45, 45, 0.06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', 'Segoe UI', sans-serif;
    background: radial-gradient(120% 80% at 20% 20%, #fff0f3, #fff8f9 60%), var(--bg);
    color: var(--text);
    margin: 0;
    padding-top: 84px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* NAVBAR */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    z-index: 1000;
    padding: 0.75rem 0;
}

.navbar-custom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-brand-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--text);
    cursor: default;
    user-select: none;
}

.navbar-custom .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 1.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
}

.navbar-custom .nav-link {
    font-size: 0.95rem;
    color: var(--text);
    padding: 0.35rem 0.45rem;
    border-radius: 10px;
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover {
    color: var(--primary-strong);
    background-color: var(--primary-fade);
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -8px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-strong));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    border-radius: 6px;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    display: none;
}

/* HERO */
.hero-wrap {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 3rem;
    background: radial-gradient(120% 90% at 70% 0%, #ffe0e6, transparent 60%), var(--bg);
}

.hero-wrap::before,
.hero-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.hero-wrap::before {
    width: 340px;
    height: 340px;
    background: #e6c0c9;
    top: -120px;
    left: -80px;
}

.hero-wrap::after {
    width: 420px;
    height: 420px;
    background: #f2d5dc;
    bottom: -200px;
    right: -60px;
}

.hero-grid {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 3.25rem;
    align-items: center;
    z-index: 1;
}

.hero-copy {
    display: grid;
    gap: 0.65rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    color: var(--primary-strong);
    padding: 0.35rem 0.85rem;
    background: var(--primary-fade);
    border-radius: 999px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 0;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    margin: 0;
    font-weight: 600;
    color: var(--primary-strong);
    letter-spacing: 0.01em;
}

.hero-desc {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-solid,
.btn-ghost,
.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-solid {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(92, 60, 240, 0.35);
}

.btn-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(92, 60, 240, 0.42);
}

.btn-ghost {
    color: var(--primary-strong);
    background: var(--primary-fade);
    border-color: rgba(92, 60, 240, 0.15);
}

.btn-ghost:hover {
    background: #e1daff;
    transform: translateY(-1px);
}

.btn-soft {
    color: var(--text);
    background: #ffffff;
    border-color: var(--border);
}

.btn-soft:hover {
    border-color: var(--primary);
    color: var(--primary-strong);
    transform: translateY(-1px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-orb {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f9e1e6 55%, #e8cbd3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 3.2rem;
    color: var(--primary-strong);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.hero-orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-orb::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 18%;
    left: 10%;
    filter: blur(6px);
    z-index: 1;
    pointer-events: none;
}

.hero-orb-sm {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d99aa8, #d48898);
    bottom: 12%;
    right: 6%;
    box-shadow: 0 25px 45px rgba(92, 60, 240, 0.28);
}

/* FEATURE GRID */
.feature-grid {
    position: relative;
    z-index: 1;
    margin-top: 2.8rem;
    max-width: 1180px;
    padding: 0 1.5rem 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.35rem 1.25rem;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), #fff5f7);
    border: 1px solid rgba(122, 92, 244, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    color: var(--text);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(92, 60, 240, 0.12);
    border-color: rgba(92, 60, 240, 0.25);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-strong);
    background: var(--primary-fade);
}

.feature-icon-secondary {
    color: #bf8fa0;
    background: #fff0f4;
}

.feature-icon-tertiary {
    color: #9a8c9e;
    background: #f4f0f6;
}

.feature-label {
    margin: 0 0 0.2rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.feature-text {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* CONTENT WRAPPER */
.main-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

#main-content {
    margin-top: 14px;
}

.content-section {
    background: var(--surface);
    border-radius: 22px;
    padding: 2.4rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(92, 60, 240, 0.06);
}

.section-heading {
    font-size: 1.35rem;
    margin: 0 0 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}

/* HOME INTRO */
.home-intro {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 1.8rem;
    align-items: start;
}

.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--primary-fade);
    color: var(--primary-strong);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pill-label.light {
    background: #f4f3ff;
    color: var(--muted);
}

.stacked-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.stacked-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.75rem 0.75rem;
    border-radius: 12px;
    background: #faf9ff;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 0.4rem;
}

.dot-primary {
    background: var(--primary);
}

.dot-secondary {
    background: #d99aa8;
}

.dot-tertiary {
    background: #9a8c9e;
}

.home-panel {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.home-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.badge-soft {
    background: var(--primary-fade);
    color: var(--primary-strong);
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.home-panel-links {
    display: grid;
    gap: 0.8rem;
}

.panel-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(92, 60, 240, 0.08);
    background: #faf9ff;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.panel-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(92, 60, 240, 0.2);
}

.panel-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-strong);
}

.panel-icon-primary {
    background: #fff0f4;
}

.panel-icon-secondary {
    background: #fff5f7;
    color: #bf8fa0;
}

.panel-icon-tertiary {
    background: #fdf2f5;
    color: #9a8c9e;
}

.panel-icon-warning {
    background: #fff8e1;
    color: #f57c00;
}

.arrow {
    font-size: 1.1rem;
    color: var(--muted);
}

/* FILTER BAR */
.search-filter-section {
    background: linear-gradient(135deg, #f5f2ff, #ffffff);
    border-radius: 18px;
    padding: 1.4rem 1.25rem;
    border: 1px solid rgba(92, 60, 240, 0.08);
    margin-bottom: 1.3rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.search-filter-section .row>div {
    display: flex;
}

.form-control {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.65rem 1.05rem;
    font-size: 0.95rem;
    background-color: #fff;
    transition: border 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(122, 92, 244, 0.2);
}

.btn {
    border-radius: 12px;
    padding: 0.7rem 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    box-shadow: 0 12px 28px rgba(92, 60, 240, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(92, 60, 240, 0.3);
}

.btn-secondary {
    background: #eef0fb;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #e4e7fb;
    transform: translateY(-1px);
}

/* SORTING */
.sorting-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.sorting-links a {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(92, 60, 240, 0.12);
    background: #faf9ff;
    color: var(--text);
}

.sorting-links a:hover {
    border-color: var(--primary);
    color: var(--primary-strong);
    background: var(--primary-fade);
}

/* DATA CARDS */
.activity-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.35rem 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: #fff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.activity-details {
    min-width: 240px;
}

.activity-meta {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.activity-title {
    font-size: 1.2rem;
    margin: 0.35rem 0 0.55rem;
    color: var(--text);
}

.activity-media img,
.activity-media video {
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

/* CV SECTION */
.cv-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    border-radius: 20px;
    padding: 1.9rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    background: #fff;
    transition: all 0.5s ease;
}

.cv-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(212, 136, 152, 0.25), 0 0 30px rgba(212, 136, 152, 0.1);
}

.cv-photo {
    border-radius: 16px;
    overflow: hidden;
    background: #f4f2ff;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
}

.cv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-photo-placeholder {
    font-size: 0.95rem;
}

.cv-info h3 {
    margin-top: 0;
    font-size: 1.45rem;
}

.cv-info dl {
    display: grid;
    grid-template-columns: 150px 1fr;
    row-gap: 0.75rem;
    column-gap: 1rem;
}

.cv-info dt {
    color: var(--muted);
    font-weight: 500;
}

.cv-info dd {
    margin: 0;
    font-weight: 600;
}

/* EDUCATION TIMELINE */
.education-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(122, 92, 244, 0.25);
}

.timeline-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.4rem;
    border: 1px solid rgba(92, 60, 240, 0.08);
    box-shadow: var(--shadow-soft);
}

.timeline-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.timeline-title {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    color: var(--text);
}

/* TABLES */
.table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
}

.table thead {
    background: var(--primary-fade);
}

.table th,
.table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.table tr:last-child td {
    border-bottom: none;
}

/* PAGINATION */
.pagination {
    display: flex;
    gap: 0.4rem;
    list-style: none;
    padding-left: 0;
}

.pagination li a,
.pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--text);
    background: #fff;
}

.pagination li.active span,
.pagination li a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    border-color: transparent;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2.2rem 0;
    color: var(--muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
    background: #fff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .hero-orb {
        width: 280px;
        height: 280px;
    }

    .hero-orb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .hero-orb-sm {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 74px;
    }

    .navbar-custom .container {
        flex-direction: column;
        gap: 0.4rem;
    }

    .navbar-custom .navbar-nav {
        gap: 0.5rem;
    }

    .content-section {
        padding: 1.6rem;
    }

    .activity-card {
        flex-direction: column;
    }

    .education-timeline {
        padding-left: 1rem;
    }

    .cv-card {
        grid-template-columns: 1fr;
    }

    .cv-info dl {
        grid-template-columns: 1fr;
    }
}