/* public/assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #6366f1; /* Indigo 500 */
    --secondary-color: #ec4899; /* Pink 500 */
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
    --card-bg-dark: rgba(30, 41, 59, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Background Animation */
.bg-gradient-animate {
    background: var(--bg-gradient, linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #1e293b));
    background-color: var(--bg-dark);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Cards */
.glass-panel {
    background: var(--card-bg-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Kanban Columns */
.kanban-column {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
    min-height: 400px;
    border: 1px solid rgba(255,255,255,0.05);
}

.kanban-task {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kanban-task:hover {
    background: rgba(51, 65, 85, 0.9);
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.3);
}

.badge-tag {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}
