
:root {
    --orange-primary: #D97706;
    --orange-secondary: #F59E0B;
    --orange-light: #FBBF24;
    --orange-dark: #B45309;
    --navy-primary: #1E293B;
    --navy-secondary: #334155;
    --cream: #FFFBEB;
    --gold: #CA8A04;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #FFFBEB 0%, #FEF3C7 100%);
    color: var(--navy-primary);
    padding-top: 0;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   NAVBAR - CENTERED
   ============================================ */
.navbar-top {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 60px;
    padding: 10px 25px;
    box-shadow: 
        0 8px 32px rgba(217, 119, 6, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.navbar-top.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 12px 40px rgba(217, 119, 6, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-primary);
    white-space: nowrap;
    letter-spacing: -0.3px;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.navbar-top .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-shrink: 0;
}

.navbar-top .nav-link {
    color: var(--navy-secondary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.navbar-top .nav-link:hover {
    color: var(--orange-dark);
    background: rgba(217, 119, 6, 0.1);
    transform: translateY(-1px);
}

.navbar-top .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    box-shadow: 
        0 4px 16px rgba(217, 119, 6, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar-toggler {
    display: none;
    border: none;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   MAIN CONTAINER - CENTERED
   ============================================ */
/* ============================================
   MAIN CONTAINER - FULL WIDTH & RESPONSIVE
   ============================================ */

/* 1. Wadah Utama: Dibuat Full Layar 100% */
.container-fluid {
    width: 100%;            /* Lebar penuh */
    max-width: 100%;        /* Hapus batasan 1200px di sini */
    margin: 0;
    padding: 0;             /* Hapus padding agar gambar bisa mentok tepi */
   
}

/* 2. Wadah Konten: Ini pengganti fungsi lama container-fluid Anda */
/* Gunakan class ini DI DALAM container-fluid untuk membungkus teks/kartu */
.container-content {
    width: 100%;
    max-width: 1200px;      /* Batasan lebar agar teks enak dibaca */
    margin: 0 auto;         /* Posisi tengah */
    padding-top: 120px;     /* Jarak dari atas (Navbar) */
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
}

/* 3. Responsive: Penyesuaian untuk HP (Mobile) */
@media (max-width: 768px) {
    .container-content {
        padding-top: 100px; /* Jarak atas lebih kecil di HP */
        padding-left: 20px; /* Jarak samping lebih tipis */
        padding-right: 20px;
        padding-bottom: 40px;
    }
}

.resume-section {
    margin-bottom: 60px;
}

/* ============================================
   CONTENT CARDS - CENTERED
   ============================================ */
.resume-section-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(217, 119, 6, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-align: center;
}

.resume-section-content:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* ============================================
   TYPOGRAPHY - CENTERED
   ============================================ */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
    border-radius: 4px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 12px;
    text-align: center;
}

.subheading {
    color: var(--orange-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    text-align: center;
}

.lead {
    font-size: 18px;
    line-height: 1.9;
    color: var(--navy-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    text-align: center;
}

/* ============================================
   ABOUT SECTION - CENTERED
   ============================================ */
.about-modern {
    padding: 0 !important;
}

.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.about-hero-content {
    max-width: 800px;
    text-align: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: center;
}

.about-subtitle {
    color: var(--orange-dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--navy-secondary);
    margin: 0;
    text-align: center;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 350px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 8px rgba(255, 255, 255, 0.5),
        0 0 0 12px rgba(217, 119, 6, 0.3);
    transition: all 0.4s ease;
}

.hero-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 0 0 8px rgba(255, 255, 255, 0.6),
        0 0 0 12px rgba(217, 119, 6, 0.4);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   VISION CARDS - CENTERED
   ============================================ */
.vision-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(217, 119, 6, 0.1);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(217, 119, 6, 0.25);
    border-color: rgba(217, 119, 6, 0.3);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.35);
    transition: all 0.4s ease;
}

.vision-card:hover .vision-card-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.45);
}

.vision-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vision-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--navy-secondary);
    margin: 0;
}

/* ============================================
   EXPERIENCE ITEMS - MODERN CENTERED DESIGN
   ============================================ */
.experience-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border: 1px solid rgba(217, 119, 6, 0.1);
    border-left: 5px solid var(--orange-primary);
    border-radius: 16px;
    padding: 40px 35px;
    margin-bottom: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.experience-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
    border-left-color: var(--orange-secondary);
    border-left-width: 6px;
    box-shadow: 
        0 10px 40px rgba(217, 119, 6, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.experience-item:hover::before {
    opacity: 1;
}

.d-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flex-grow-1 {
    width: 100%;
}

.experience-item h3 {
    color: var(--navy-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.experience-item:hover h3 {
    color: var(--orange-primary);
}

.experience-item .subheading {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
}

.text-primary {
    color: var(--orange-primary) !important;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(217, 119, 6, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.experience-item:hover .text-primary {
    background: rgba(217, 119, 6, 0.15);
    transform: scale(1.05);
}

.text-muted {
    color: var(--navy-secondary) !important;
    opacity: 0.75;
    line-height: 1.7;
    transition: opacity 0.3s ease;
}

.experience-item:hover .text-muted {
    opacity: 0.9;
}

.lh-lg {
    line-height: 1.8;
    font-size: 1rem;
}

/* Empty State Styling */
.text-center.py-5 {
    padding: 60px 20px;
}

.text-center.py-5 i {
    opacity: 0.3;
    transition: all 0.3s ease;
    font-size: 3rem;
}

.text-center.py-5:hover i {
    opacity: 0.5;
    transform: scale(1.1);
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

/* ============================================
   SKILLS - CENTERED
   ============================================ */
.dev-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin-bottom: 40px;
    justify-content: center;
}

.dev-icons li {
    font-size: 52px;
    color: var(--orange-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(217, 119, 6, 0.2));
}

.dev-icons li:hover {
    transform: translateY(-8px) scale(1.15);
    color: var(--orange-secondary);
    filter: drop-shadow(0 8px 16px rgba(217, 119, 6, 0.35));
}

.list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-inline-item {
    display: inline-block;
}

/* ============================================
   SOCIAL ICONS - CENTERED
   ============================================ */
.social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(217, 119, 6, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 
        0 12px 30px rgba(217, 119, 6, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
        position: relative;
        z-index: 1001;
        order: 2;
    }

    .navbar-brand {
        order: 1;
        font-size: 16px;
    }

    .navbar-top {
        top: 15px;
        width: calc(100% - 32px);
        padding: 12px 20px;
        justify-content: space-between;
    }

    .navbar-top .navbar-nav {
        position: fixed;
        top: 75px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 16px;
        gap: 6px;
        border-radius: 20px;
        border: 1px solid rgba(217, 119, 6, 0.2);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .navbar-top .navbar-nav.show {
        max-height: 500px;
        opacity: 1;
        pointer-events: all;
    }

    .navbar-top .nav-link {
        text-align: center;
        padding: 14px 20px;
        width: 100%;
    }

    .container-fluid {
        padding: 100px 20px 40px;
    }

    .resume-section-content {
        padding: 32px 20px;
    }

    h1, .about-title {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .about-hero {
        padding: 40px 30px;
    }

    .hero-image-container {
        width: 300px;
        height: 350px;
    }

    .vision-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 30px;
    }

    .experience-item {
        padding: 30px 25px;
        margin-bottom: 25px;
    }
    
    .experience-item h3 {
        font-size: 1.3rem;
    }
    
    .experience-item .subheading {
        font-size: 1rem;
    }
    
    .text-primary {
        font-size: 0.95rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .navbar-top {
        width: calc(100% - 24px);
        padding: 10px 16px;
        top: 12px;
    }

    .navbar-brand {
        font-size: 14px;
    }

    h1, .about-title {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .container-fluid {
        padding: 85px 16px 30px;
    }

    .resume-section-content {
        padding: 24px 16px;
    }

    .about-hero {
        padding: 30px 20px;
    }

    .hero-image-container {
        width: 250px;
        height: 300px;
    }

    .vision-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .dev-icons li {
        font-size: 42px;
    }

    .experience-item {
        padding: 25px 20px;
        border-left-width: 4px;
    }
    
    .experience-item:hover {
        border-left-width: 5px;
        transform: translateY(-2px);
    }
}
   