/* FISAT ZertOrga Custom Theme */

/* Import Titillium Web Font */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --fisat-blue: #004C97;
    --fisat-light-blue: #0066CC;
    --fisat-dark-blue: #003366;
    --fisat-gray: #F8F9FA;
    --fisat-dark-gray: #6C757D;
}

/* Global Font Settings */
body {
    font-family: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-light {
    font-weight: 300 !important;
}

/* FISAT Primary Colors */
.text-fisat-blue {
    color: var(--fisat-blue) !important;
}

.bg-fisat-blue {
    background-color: var(--fisat-blue) !important;
}

.btn-fisat-primary {
    background-color: var(--fisat-blue);
    border-color: var(--fisat-blue);
    color: white;
}

.btn-fisat-primary:hover {
    background-color: var(--fisat-dark-blue);
    border-color: var(--fisat-dark-blue);
    color: white;
}

.btn-fisat-primary:focus, .btn-fisat-primary:active {
    background-color: var(--fisat-dark-blue);
    border-color: var(--fisat-dark-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 76, 151, 0.25);
}

/* Custom Card Styles */
.card-fisat {
    border-left: 4px solid var(--fisat-blue);
}

.card-stat {
    transition: transform 0.2s ease-in-out;
}

.card-stat:hover {
    transform: translateY(-5px);
}

/* Sidebar Styling */
.sidebar {
    background-color: var(--fisat-gray);
    border-right: 1px solid #dee2e6;
    min-height: 100vh;
}

.sidebar .nav-link {
    color: var(--fisat-dark-gray);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
}

.sidebar .nav-link:hover {
    background-color: rgba(0, 76, 151, 0.1);
    color: var(--fisat-blue);
}

.sidebar .nav-link.active {
    background-color: var(--fisat-blue);
    color: white;
}

/* Navbar Styling */
.navbar-fisat {
    background-color: white;
    border-bottom: 3px solid var(--fisat-blue);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Table Enhancements */
.table-fisat th {
    background-color: var(--fisat-gray);
    color: var(--fisat-blue);
    border-bottom: 2px solid var(--fisat-blue);
    font-weight: 600;
}

/* Badge Variations */
.badge-fisat {
    background-color: var(--fisat-blue);
}

/* Status Indicators */
.status-active {
    color: #28a745;
}

.status-warning {
    color: #ffc107;
}

.status-danger {
    color: #dc3545;
}

/* Form Enhancements */
.form-control:focus {
    border-color: var(--fisat-light-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 76, 151, 0.25);
}

.form-select:focus {
    border-color: var(--fisat-light-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 76, 151, 0.25);
}

/* Dashboard Cards */
.dashboard-card {
    border-top: 4px solid var(--fisat-blue);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 4px 15px rgba(0, 76, 151, 0.15);
}

/* Login Page Specific */
.login-container {
    max-width: 450px;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
    }
    
    .login-container {
        margin: 20px;
    }
}

/* Alert Enhancements */
.alert-fisat {
    background-color: rgba(0, 76, 151, 0.1);
    border-color: var(--fisat-blue);
    color: var(--fisat-blue);
}

/* Loading Spinner */
.spinner-fisat {
    color: var(--fisat-blue);
}

/* Custom Button Variants */
.btn-outline-fisat {
    color: var(--fisat-blue);
    border-color: var(--fisat-blue);
}

.btn-outline-fisat:hover {
    background-color: var(--fisat-blue);
    border-color: var(--fisat-blue);
    color: white;
} 