
/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #3674B5;
    --secondary-color: #F5F0CD;
    --accent-color: #FADA7A;
    --text-dark: #333;
    --text-light: #fff;
}

/* Global Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}
.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}
.nav-link {
    color: #555 !important;
    font-weight: 500;
}
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5a8a 100%) !important;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../logo_bps.png') no-repeat center center;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 1rem;
    overflow: hidden;
}
.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 600;
    padding: 1rem 1.5rem;
    color: var(--primary-color);
}

/* Forms */
.form-label {
    font-weight: 500;
    color: #495057;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(54, 116, 181, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    color: white;
}
.btn-primary:hover {
    background-color: #2a5a8a;
    border-color: #2a5a8a;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Custom Accents */
.bg-primary {
    background-color: var(--primary-color) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}
.bg-accent {
    background-color: var(--accent-color) !important;
}

/* Footer */
footer {
    background-color: white;
    color: #6c757d;
}

/* Custom Page Header */
.page-header {
    background-color: var(--secondary-color);
    padding: 2rem 0;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}
.page-header h1 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    font-size: 1.75rem;
}

/* Sidebar (Admin) */
.sidebar .nav-link.active {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-right: 3px solid var(--primary-color);
}
