/* assets/css/user-style.css */
:root { 
    --army-green: #166534; 
    --slate-dark: #0f172a; 
    --soft-bg: #f8fafc;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--soft-bg); 
    color: #1e293b; 
}

/* Glassmorphism Header */
.navbar-custom { 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

/* Hero & Carousel */
.carousel-item img { 
    height: 320px; 
    object-fit: cover; 
    filter: brightness(50%); 
}

/* Card & Typography */
.card-giat { 
    border: none; 
    border-radius: 20px; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    background: white; 
}

.card-giat:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); 
}

.img-wrapper { 
    height: 200px; 
    overflow: hidden; 
    border-radius: 20px 20px 0 0; 
    position: relative; 
}

.badge-status { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    border-radius: 10px; 
    padding: 6px 12px; 
    font-weight: 700; 
    font-size: 0.7rem; 
}

/* Table Enhancements */
.table thead th {
    background-color: #f1f5f9;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}