:root {
    --lozupone-blue: #0056b3;
    --lozupone-light-blue: #e7f1ff;
    --lozupone-dark-blue: #003366;
    --bs-primary: var(--lozupone-blue);
    --bs-primary-rgb: 0, 86, 179;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.bg-primary {
    background-color: var(--lozupone-blue) !important;
}

.btn-primary {
    background-color: var(--lozupone-blue);
    border-color: var(--lozupone-blue);
}

.btn-primary:hover {
    background-color: var(--lozupone-dark-blue);
    border-color: var(--lozupone-dark-blue);
}

.text-primary {
    color: var(--lozupone-blue) !important;
}

.hero-section {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)), url('/images/hero-bg.jpg');
    /* Fallback or generated image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.logo-text-main {
    font-weight: 700;
    color: #fff;
    /* White for the dark navbar */
    font-size: 1.5rem;
    line-height: 1;
}

.logo-text-sub {
    font-weight: 400;
    color: #ffd700;
    /* Subtle gold accent or just different weight */
    font-size: 1.5rem;
    margin-left: 8px;
    line-height: 1;
}

.admin-logo .logo-text-main {
    color: #0d6efd;
}

.admin-logo .logo-text-sub {
    color: #6c757d;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    color: var(--lozupone-dark-blue);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lozupone-blue);
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: #f8f9fa;
    color: #6c757d;
}