/* HR Portal · refined corporate aesthetic */
:root {
    --brand-primary: #1F3A5F;
    --brand-accent: #C49A4A;
    --bg-soft: #F7F5F1;
    --border-soft: #E5E1DA;
}

body {
    font-family: "DM Sans", system-ui, sans-serif;
    background: var(--bg-soft);
    color: #1A1A1A;
    min-height: 100vh;
}

h1, h2, h3, h4, .display-1, .display-2, .display-3, .display-4 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.navbar-brand { font-family: "Fraunces", serif; font-size: 1.3rem; }

.card {
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.card-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-soft);
    font-weight: 600;
}

.btn-primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn-primary:hover { background: #16294a; border-color: #16294a; }

.btn-accent {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white;
}
.btn-accent:hover { background: #a78239; border-color: #a78239; color: white; }

.stat-card {
    border-left: 4px solid var(--brand-primary);
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
}
.stat-card .stat-value {
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
}
.stat-card .stat-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
}

.alert-card {
    border-left: 4px solid #d97706;
    background: #fffbeb;
    padding: 1rem;
    border-radius: 0.5rem;
}

.table-hover tbody tr:hover { background: rgba(31, 58, 95, 0.04); }

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1F3A5F 0%, #2c5380 100%);
}

.login-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.login-title {
    font-family: "Fraunces", serif;
    color: var(--brand-primary);
}

.badge.contract-fixed { background: #1F3A5F; }
.badge.contract-zero  { background: #C49A4A; }

.text-brand { color: var(--brand-primary); }

.section-title {
    font-family: "Fraunces", serif;
    font-size: 1.75rem;
    color: var(--brand-primary);
    margin-bottom: 0.25rem;
}
.section-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
}
