/* File: assets/css/style.css - MODERN VERSION */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary: #4e54c8;
    --secondary: #8f94fb;
    --accent: #ff9966;
    --dark: #2c3e50;
    --light: #f4f7f6;
}

body {
    background-color: var(--light);
    font-family: 'Poppins', sans-serif; /* Font Modern */
    color: var(--dark);
    overflow-x: hidden;
}

/* Navbar Glass effect */
.navbar-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Hero Section dengan Gradient Bergerak */
.hero-section {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: white;
    padding: 100px 0 80px;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card Loker Modern */
.card-loker {
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-loker:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(78, 84, 200, 0.2); /* Bayangan berwarna */
}

/* Garis warna di atas card */
.card-loker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.badge-jurusan {
    border-radius: 30px;
    padding: 5px 12px;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-right: 15px;
    font-size: 1.5rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
}

/* Admin Dashboard Cards */
.card-stat {
    border-radius: 15px;
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
}
.card-stat h3 { font-size: 2.5rem; font-weight: 700; }
.bg-gradient-1 { background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); }
.bg-gradient-2 { background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); }
.bg-gradient-3 { background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); }