/* ================================================================
   ROH Custom Styles - Modernised
   ================================================================ */

/* Base */
body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Noto Serif', serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Londrina Solid', sans-serif;
    letter-spacing: 1px;
}

/* Navbar enhancements */
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Cards */
.card {
    background-color: #2c2c2c;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s;
}

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

.card-header, .alert-success {
    background-color: #343a40 !important;
    border-bottom: 1px solid #555;
}

/* Tables */
.table-dark {
    background-color: #252525;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255,255,255,0.05);
}

/* Footer */
.footer-basic {
    padding: 50px 0 30px;
    background-color: #111;
    color: #aaa;
    text-align: center;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    font-size: 1.1rem;
}

.footer-basic ul a {
    color: #ddd;
    text-decoration: none;
}

.footer-basic ul a:hover {
    color: #fff;
    opacity: 1;
}

/* Images */
.card-img-top {
    max-height: 420px;
    object-fit: contain;
    background-color: #111;
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border: none;
}

.btn-secondary {
    background-color: #6c757d;
}

/* Statistics numbers */
.display-6 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #0dcaf0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.8rem;
    }
    
    .card-img-top {
        max-height: 280px;
    }
}

/* Memorial / respectful touches */
.lead {
    font-style: italic;
    color: #b0b0b0;
}

hr {
    border-color: #444;
}

/* Hover effects */
a:hover {
    color: #0dcaf0 !important;
}

/* Utility */
.text-muted {
    color: #888 !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}