/* /shspath/assets/css/style.css */

:root {
    --gh-navy: #002147; /* Professional Academic Blue */
    --gh-gold: #D4AF37; /* Success Gold */
    --gh-light: #f8f9fa;
    --gh-success: #2e7d32; /* WAEC Green */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: var(--gh-navy);
}

/* --- Hero Section & Enhancements --- */
.hero-section {
    /* Overlay effect to ensure text remains readable over the image */
    background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.85)), 
                url('https://images.unsplash.com/photo-1523050335392-93851179ae22?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 5px solid var(--gh-gold);
    margin-bottom: 40px;
}

/* --- Buttons & Typography --- */
.btn-gold {
    background-color: var(--gh-gold);
    color: var(--gh-navy);
    border: none;
    transition: 0.3s;
    font-weight: 700;
}

.btn-gold:hover {
    background-color: #b8962e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.text-primary {
    color: var(--gh-navy) !important;
}

/* --- Progress & Cards --- */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- Assessment Form Styling --- */
.assessment-form fieldset {
    background: white;
    border: 1px solid #e0e0e0 !important;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.assessment-form fieldset:hover {
    border-color: var(--gh-gold) !important;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.1);
}

.form-select {
    border: 2px solid #eee;
    padding: 12px;
    border-radius: 8px;
}

.form-select:focus {
    border-color: var(--gh-navy);
    box-shadow: none;
}

/* --- Badges & Indicators --- */
.badge {
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
}

/* --- Subject Advisor Specifics --- */
.subject-opt {
    width: 20px;
    height: 20px;
}

.sticky-bottom {
    border-top: 3px solid var(--gh-gold) !important;
    z-index: 1020;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-section { 
        padding: 60px 15px; 
    }
    h1 { 
        font-size: 1.8rem; 
    }
    .btn-lg { 
        width: 100%; 
    }
}