:root {
    /* --- PALET WARNA ELEGANT DARK ROSE --- */
    --bg: #121212; /* Hitam elegan, bukan hitam mati */
    --neu-1: #1e1e1e; /* Warna permukaan kartu (sedikit lebih terang dari BG) */
    
    /* KUNCI EFEK TIMBUL DI DARK MODE */
    /* Bayangan gelap pekat di kanan bawah */
    --neu-shadow-dark: 8px 8px 15px #0a0a0a; 
    /* Cahaya halus di kiri atas (ini yang bikin efek 3D) */
    --neu-shadow-light: -8px -8px 15px #323232; 
    
    /* Warna Teks & Aksen */
    --text: #fad7e6; /* Pink Pastel Lembut (untuk teks biasa, gak norak) */
    --primary: #ec4899; /* Rose Pink Elegan (untuk tombol/judul penting) */
    --primary-text: #ffffff; /* Teks putih di atas tombol pink */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body { background: var(--bg); color: var(--text); overflow-x: hidden; }

/* --- Neumorphism Utilities (Dark 3D Effect) --- */
/* Ini class inti yang bikin efek timbul */
.neumorph-nav, .btn-neu, .price-card, .admin-card, .gallery-item, .jane-bubble {
    background: var(--neu-1);
    box-shadow: var(--neu-shadow-dark), var(--neu-shadow-light);
    border-radius: 20px;
    /* Border super tipis biar makin tegas */
    border: 1px solid rgba(236, 72, 153, 0.1); 
}

/* Navbar */
.neumorph-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; margin: 20px 5%; position: sticky; top: 10px; z-index: 100;
}
.logo { font-weight: 700; font-size: 1.2rem; color: var(--primary); text-shadow: 0 0 10px rgba(236, 72, 153, 0.3); }
.logo span { color: var(--text); }
.nav-links a { text-decoration: none; color: var(--text); margin-left: 20px; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 5px var(--primary); }

/* Buttons (Tombol Timbul) */
.btn-neu {
    padding: 12px 30px; text-decoration: none; color: var(--text); font-weight: 600;
    display: inline-block; transition: 0.2s; cursor: pointer; border: none; outline: none;
}
/* Efek saat tombol ditekan (Mendelep ke dalam) */
.btn-neu:active {
    box-shadow: inset 4px 4px 8px #0a0a0a, 
                inset -4px -4px 8px #323232;
    transform: translateY(2px);
    color: var(--primary);
}
/* Tombol Utama (Pink) */
.btn-neu.primary { 
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4); /* Glow Pink Halus */
    border: none;
}
.btn-neu.primary:hover {
     box-shadow: 0 6px 25px rgba(236, 72, 153, 0.6), inset 0 0 10px rgba(255,255,255,0.2);
}
.btn-neu.small { padding: 8px 20px; font-size: 0.9rem; margin-top: 10px; }
.btn-neu.full-width { width: 100%; text-align: center; }

/* Hero Section */
.hero {
    min-height: 80vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 20px; position: relative;
    /* Latar belakang gradien pink sangat halus */
    background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.08), transparent 60%);
}
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; color: var(--text); }
.blue-text { color: var(--primary); text-shadow: 0 0 15px rgba(236, 72, 153, 0.5); } /* Jadi Pink text */
.badge {
    background: rgba(236, 72, 153, 0.15); color: var(--primary);
    padding: 5px 15px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    border: 1px solid rgba(236, 72, 153, 0.3);
}
.hero-btns { margin-top: 30px; display: flex; gap: 20px; justify-content: center; }

/* Admin Panel */
.hidden { display: none !important; }
.admin-panel { max-width: 500px; margin: 0 auto 40px auto; }
.admin-card { padding: 30px; text-align: center; }
.neu-input {
    width: 100%; padding: 12px; border-radius: 10px; border: none; margin: 15px 0;
    background: var(--neu-1); color: var(--text);
    /* Input field mendelep ke dalam */
    box-shadow: inset 4px 4px 8px #0a0a0a, inset -4px -4px 8px #323232;
    outline: none; border: 1px solid transparent; transition: 0.3s;
}
.neu-input:focus { border-color: var(--primary); color: var(--primary); }
.neu-input::placeholder { color: rgba(250, 215, 230, 0.4); }
.status-text { margin-top: 10px; font-size: 0.9rem; color: var(--primary); }

/* Gallery */
.section { padding: 60px 5%; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { color: var(--primary); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px;
}
.gallery-item { padding: 15px; transition: 0.3s; }
.gallery-item:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2); }
.img-box {
    width: 100%; height: 220px; border-radius: 15px; overflow: hidden; margin-bottom: 15px;
    box-shadow: inset 3px 3px 10px rgba(0,0,0,0.5);
}
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.loader { text-align: center; width: 100%; grid-column: 1/-1; color: var(--text); }

/* Pricing */
.pricing-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.price-card {
    padding: 40px; width: 300px; text-align: center; position: relative;
}
.price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 0 30px rgba(236, 72, 153, 0.2); }
.price { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin: 20px 0; text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);}
.price-card ul { list-style: none; text-align: left; margin-bottom: 30px; }
.price-card li { margin-bottom: 10px; color: var(--text); opacity: 0.9; }
.price-card li i { color: var(--primary); margin-right: 10px; }
.label {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--primary-text); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; box-shadow: 0 5px 15px rgba(236, 72, 153, 0.5);
}

/* Footer */
footer { text-align: center; padding: 40px; margin-top: 50px; opacity: 0.8; border-top: 1px solid rgba(236, 72, 153, 0.1); }
.credits { font-size: 0.8rem; cursor: pointer; margin-top: 10px; transition:0.3s;}
.credits:hover { color: var(--primary); }

/* --- ANIMASI (TETAP ADA) --- */
.fade-in { animation: fadeIn 1s ease forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }

/* WIDGET JANE (TEMA GELAP & TETAP MENGAMBANG) */
.jane-widget {
    position: fixed; bottom: 20px; left: 20px; z-index: 9999;
    display: flex; flex-direction: column; align-items: flex-start;
}
.jane-avatar img {
    width: 70px; height: 70px; object-fit: cover; border-radius: 50%;
    border: 3px solid var(--primary); /* Border Pink */
    background: var(--neu-1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    /* Animasi mengambang Jane TETAP ADA */
    cursor: pointer; transition: 0.3s; animation: float 3s ease-in-out infinite;
}
.jane-avatar img:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 25px rgba(236, 72, 153, 0.6); }
.jane-bubble {
    /* Bubble chat juga timbul */
    font-size: 12px; font-weight: bold; color: var(--primary);
    margin-bottom: 10px; max-width: 150px; padding: 10px 15px; border-radius: 15px 15px 15px 0;
    opacity: 0; transform: translateY(10px); transition: 0.3s; pointer-events: none;
}
.jane-bubble.show { opacity: 1; transform: translateY(0); }
/* Keyframes animasi mengambang */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .nav-links { display: none; }
    .pricing-container { flex-direction: column; align-items: center; }
}
