/* Brand Colors */
:root {
    --brand-primary: #000080; /* Navy Blue */
    --brand-secondary: #E0A800; /* Amber/Gold Accent */
    --brand-bg-light: #FFFF00;
    --text-primary: #333333;
    --text-muted: #6c757d;
}

/* Typography */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    background-color: var(--brand-bg-light);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--brand-primary);
}

/* Custom Card Styling */
.card-custom {
    border: none;
    border-radius: 12px; /* Softened corners */
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Floating depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-custom .card-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 128, 0.1);
}

/* Button Styling */
.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-primary:hover {
    background-color: #000066;
    border-color: #000066;
}

.btn-outline-secondary {
    color: var(--text-muted);
    border-color: #dee2e6;
}

.btn-outline-secondary:hover {
    color: var(--brand-primary);
    background-color: #f8f9fa;
    border-color: var(--brand-primary);
}

/* Navigation */
.navbar {
    background-color: white !important;
    box-shadow: none !important;
    border-top: none !important;
    padding: 12px 0 8px 0; /* Professional heft */
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center; /* Restore centering */
    margin-top: 0 !important;
    padding-top: 0 !important;
    line-height: 1; 
    gap: 12px;
}

.navbar-brand span {
    margin-top: 8px; /* Nudge text down */
}

.navbar-logo {
    height: 38px;
    width: auto;
    border-radius: 5px;
    object-fit: contain;
    border: none;
    margin-top: -4px; /* Keep logo high */
    align-self: flex-start;
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-nav {
    align-items: center; /* Optical balance for right links */
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-primary);
}

/* Status & Icons */
.status-section {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.status-ready {
    background-color: rgba(25, 135, 84, 0.1); /* Pale green tint */
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.1); /* Pale yellow tint */
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.status-not-ready {
    background-color: rgba(108, 117, 125, 0.05); /* Pale gray tint */
}

/* Helpers */
.text-placeholder {
    font-style: italic;
    color: #adb5bd;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 0, 128, 0.1);
    color: var(--brand-primary);
    margin-right: 10px;
    font-size: 0.9rem;
}
