@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

/* Tema Dark Obsidian & Muted Navy Base */
.bg-obsidian {
    background-color: #0b1120; /* Deep Obsidian */
}

.glass-nav {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: rgba(30, 41, 59, 0.6); /* Muted Navy Glass */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes ambientGlow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.08); }
}

.animate-ambient {
    animation: ambientGlow 8s infinite ease-in-out;
}

/* Hover Indicator Menu Navigasi */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f59e0b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Custom Elegant Section Divider */
.section-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
}

.divider-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.7), rgba(245, 158, 11, 0.3), transparent);
}