@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0f172a;
    --secondary: #334155;
    --accent: #3b82f6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg-body: #f1f5f9;
    --sidebar-w: 260px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: #1e293b;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

/* SIDEBAR */
#wrapper {
    display: flex;
    width: 100%;
}

.sidebar {
    width: var(--sidebar-w);
    min-height: 100vh;
    background: var(--primary);
    color: #94a3b8;
    position: fixed;
    z-index: 1000;
    transition: all 0.3s;
    padding: 1.5rem 1rem;
}

.sidebar-brand {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: #94a3b8;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .nav-link:hover, .nav-link.active {
        background: var(--accent);
        color: white;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

/* CONTENT */
#content-wrapper {
    width: 100%;
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    padding: 2rem;
}

/* TOPBAR */
.topbar {
    background: white;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 2rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* CARDS & KANBAN */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    background: white;
}

.kanban-board {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.kanban-col {
    min-width: 300px;
    background: #e2e8f0;
    border-radius: 16px;
    padding: 1rem;
}

.task-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: grab;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .task-card[data-type="Hata"] {
        border-left-color: var(--danger);
    }

    .task-card[data-type="İstek"] {
        border-left-color: var(--accent);
    }

/* LOGIN */
.login-split {
    display: flex;
    height: 100vh;
}

.login-img {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920');
    background-size: cover;
}

.login-form {
    flex: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 2rem;
}
/* COUNT CARDS (ÜST KARTLAR) */
.count-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.count-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.count-lbl {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

/* KANBAN ÖZEL TASARIM */
.kanban-board {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
}

.kanban-col {
    min-width: 320px;
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px dashed rgba(0,0,0,0.1); /* Tırtıklı Çizgi */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Her sütun için özel renkler (Arka plan + Border Rengi) */
.col-style-New {
    background-color: #fff7ed;
    border-color: #fed7aa;
}
/* Turuncu ton */
.col-style-Pending {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}
/* Gri ton */
.col-style-Dev {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}
/* Mavi ton */
.col-style-Done {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}
/* Yeşil ton */

.kanban-header-text {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
}