/* PENGATURAN DASAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0b1a; /* Warna biru super gelap ala referensi */
    color: #ffffff;
    overflow: hidden; /* Penting untuk scroll snap */
}

/* UTILITAS GRADASI */
.text-gradient {
    background: linear-gradient(90deg, #b043ee, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BACKGROUND ORBS (Cahaya di belakang) */
/* BACKGROUND ORBS (Cahaya di belakang yang sekarang bergerak) */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px); /* Blur dipertebal biar nyatu kayak kabut */
    z-index: -1;
    animation: floatOrbs 20s infinite alternate ease-in-out; /* Animasi diaktifkan */
}

.orb-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vh;
    background: rgba(67, 97, 238, 0.35); /* Biru */
    animation-delay: 0s;
}

.orb-2 {
    bottom: -10%; right: -10%;
    width: 60vw; height: 60vh;
    background: rgba(176, 67, 238, 0.25); /* Ungu */
    animation-delay: -7s; /* Dikasih delay biar geraknya nggak barengan */
}

.orb-3 {
    top: 30%; left: 20%;
    width: 40vw; height: 40vh;
    background: rgba(255, 255, 255, 0.15); /* Putih kalem */
    animation-delay: -14s;
}

/* Rahasia animasinya bergerak ke segala arah */
@keyframes floatOrbs {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(15vw, 15vh) scale(1.2);
    }
    66% {
        transform: translate(-10vw, 20vh) scale(0.8);
    }
    100% {
        transform: translate(-15vw, -10vh) scale(1.1);
    }
}

/* NAVBAR FIXED */
.navbar {
    position: fixed; /* Bikin navbar diem di atas */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(11, 11, 26, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000; /* Pastikan selalu di paling depan */
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }

.nav-links a {
    color: #a0a0b8;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: #ffffff; }

.btn-primary {
    background: linear-gradient(90deg, #b043ee, #4361ee);
    color: white;
    padding: 10px 25px;
    border-radius: 30px; /* Bentuk pil */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 67, 238, 0.4);
}

/* SCROLL SNAP CONTAINER */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.halaman {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    padding-top: 80px; /* Jarak aman biar konten gak ketutup navbar */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HALAMAN 1: HERO SECTION */
.hero-content {
    text-align: center;
    max-width: 1200px; /* Diperlebar biar muat 5 kartu ke samping */
    padding: 0 20px;
    width: 100%;
}
.greeting {
    color: #b043ee;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}
.description {
    color: #a0a0b8;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* KARTU ANGGOTA DI HERO (Disesuaikan biar horizontal terus) */
.team-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Jarak antar kartu disesuaikan */
    flex-wrap: nowrap; /* Ini kuncinya biar maksa terus ke samping */
    width: 100%;
}
.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    border-radius: 15px;
    width: 180px; /* Lebar diseragamkan */
    backdrop-filter: blur(10px);
    flex: 1; /* Biar membagi ruang sama rata ke samping */
}
.team-card img {
    width: 80px; 
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #4361ee;
    object-fit: cover;
}
.team-card h3 { font-size: 0.9rem; color: #fff; margin-bottom: 5px; }
.team-card p { font-size: 0.8rem; color: #a0a0b8; }

/* HALAMAN 2+: LAYOUT PROFIL INDIVIDU */
.profile-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10%;
}

.profile-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
}

.profile-left .name {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.profile-left .role {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.profile-left .bio {
    color: #a0a0b8;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
    max-width: 90%;
}

/* Update Bagian Kanan biar foto dan sosmed sejajar atas-bawah */
.profile-right {
    flex: 1;
    display: flex;
    flex-direction: column; /* Ini yang bikin elemennya turun ke bawah */
    justify-content: center;
    align-items: center;
    position: relative;
}

/* DESAIN TECH LOGOS (Kiri Bawah) */
.tech-logos {
    margin-top: 45px;
}

.tech-logos p {
    font-size: 0.85rem;
    color: #6b6b84; /* Warna abu-abu redup */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.logos-container {
    display: flex;
    gap: 25px;
    align-items: center;
}

.logos-container i {
    font-size: 1.8rem;
    color: #8888a0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.logos-container i:hover {
    color: #ffffff; /* Berubah jadi putih pas disentuh */
    transform: translateY(-3px);
}

/* DESAIN SOSIAL MEDIA (Bawah Foto) */
.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    z-index: 10; /* Biar tetap bisa diklik dan nggak tertutup efek cahaya */
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Outline putih transparan */
    color: #ffffff; /* Warna ikon putih */
    text-decoration: none;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

/* Efek keren saat sosmed disentuh kursor */
.social-links a:hover {
    background: linear-gradient(90deg, #b043ee, #4361ee);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(176, 67, 238, 0.4);
}

/* EFEK GLOWING LINGKARAN DI BELAKANG FOTO */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.glow-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(176,67,238,0.5) 0%, rgba(11,11,26,0) 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.image-wrapper img {
    position: relative;
    z-index: 2; /* Fotonya di depan cahaya */
    width: 120%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* =========================================
   1. ANIMASI SCROLL REVEAL (MUNCUL PERLAHAN)
   ========================================= */
.hidden-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hidden-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s; /* Fotonya muncul telat dikit biar estetik */
}

/* Class pembuka saat terdeteksi JS */
.show {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================
   2. WARNA LOGO BRAND SAAT DI-HOVER
   ========================================= */
.logos-container i {
    cursor: pointer;
}
.logos-container .fa-google:hover { color: #ea4335; filter: drop-shadow(0 0 8px rgba(234, 67, 53, 0.5)); }
.logos-container .fa-microsoft:hover { color: #00a4ef; filter: drop-shadow(0 0 8px rgba(0, 164, 239, 0.5)); }
.logos-container .fa-linux:hover { color: #f5c400; filter: drop-shadow(0 0 8px rgba(245, 196, 0, 0.5)); }
.logos-container .fa-aws:hover { color: #ff9900; filter: drop-shadow(0 0 8px rgba(255, 153, 0, 0.5)); }
.logos-container .fa-github:hover { color: #ffffff; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)); }

