/**
 * FRELIP Custom Theme CSS
 * Primary: #003366 (Dark Blue)
 * Accent: #cc3300 (Red)
 * Background: #f7f4ef (Paper/Cream)
 */

/* Global body styling */
body {
    background-color: #f7f4ef;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Header customization */
.navbar-default {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    border-bottom: 4px solid #cc3300;
}

.navbar-default .navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 28px;
}

/* Search box styling */
.searchForm {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,51,102,0.1);
    margin: 20px 0;
}

.searchForm .btn-primary {
    background-color: #003366;
    border-color: #003366;
}

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

/* Breadcrumbs */
.breadcrumb {
    background-color: #e6f3ff;
    border: 1px solid #003366;
}

.breadcrumb a {
    color: #003366;
}

.breadcrumb a:hover {
    color: #cc3300;
}

/* Results styling */
.result {
    background-color: #ffffff;
    border-left: 4px solid #003366;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.result:hover {
    border-left-color: #cc3300;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Links */
a {
    color: #003366;
}

a:hover {
    color: #cc3300;
}

/* Buttons */
.btn-primary {
    background-color: #003366;
    border-color: #003366;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #cc3300 !important;
    border-color: #cc3300 !important;
}

/* Facets sidebar */
.sidebar .facet {
    background-color: #ffffff;
    border-left: 3px solid #003366;
    padding: 10px;
    margin-bottom: 10px;
}

.facet h4 {
    color: #003366;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #003366;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 4px solid #cc3300;
}

footer a {
    color: #e6f3ff;
}

footer a:hover {
    color: #cc3300;
}

/* Full text access buttons (our custom feature) */
.frelip-fulltext-section,
.result-fulltext {
    background: linear-gradient(to right, #f0f8ff, #ffffff);
    border-left: 4px solid #003366;
}

.frelip-access-btn,
.frelip-repo-btn {
    background-color: #003366 !important;
    border-color: #003366 !important;
}

.frelip-access-btn:hover,
.frelip-repo-btn:hover {
    background-color: #cc3300 !important;
    border-color: #cc3300 !important;
}

/* Record page header */
.record h1 {
    color: #003366;
    border-bottom: 3px solid #cc3300;
    padding-bottom: 10px;
}

/* Pagination */
.pagination > .active > a,
.pagination > .active > span {
    background-color: #003366;
    border-color: #003366;
}

.pagination > li > a:hover {
    background-color: #cc3300;
    border-color: #cc3300;
    color: #ffffff;
}
