﻿/* Classic Blue Theme - Complete Variables */
:root {
    /* Primary Colors */
    --primary: #0d47a1;
    --secondary: #1976d2;
    --accent: #2196f3;
    /* Gradient Colors */
    --gradient-start: #0d47a1;
    --gradient-end: #0b3c91;
    --gradient-footer-start: #0b3c91;
    --gradient-footer-end: #001b3d;
    /* Light Colors */
    --light: #e3f2fd;
    --dark: #0b3c91;
    /* Semantic Colors */
    --danger: #dc3545;
    --warning: #ffc107;
    --success: #28a745;
    --info: #17a2b8;
    /* Shadow */
    --shadow: rgba(13, 71, 161, 0.1);
}
/* Top Bar - Darker shade of primary */
.top-bar {
    background: var(--dark, #0b3c91) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Header Social Links in Top Bar */
.header-social-links .social-link {
    color: #ffffff !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

    .header-social-links .social-link:hover {
        opacity: 1 !important;
        color: var(--accent) !important;
        transform: translateY(-2px) !important;
    }

/* Buttons in Top Bar */
.top-bar .btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.top-bar .btn-success {
    background: var(--success) !important;
    border-color: var(--success) !important;
    color: #ffffff !important;
}
/* Theme-specific overrides */
.school-header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.nav-link-custom.active {
    color: var(--primary) !important;
}

.nav-link-custom:hover {
    color: var(--primary) !important;
}

.footer {
    background: linear-gradient(135deg, var(--gradient-footer-start) 0%, var(--gradient-footer-end) 100%);
}

.social-link:hover {
    background: var(--accent);
}

/* ========== COMPACT ADMISSION BANNER ========== */
.admission-banner-section {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.admission-banner-card {
    border-radius: 10px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

    .admission-banner-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12) !important;
    }

    /* Left content */
    .admission-banner-card .col-lg-8 {
        background: var(--bg-primary, #ffffff) !important;
    }

    /* Compact title */
    .admission-banner-card h4 {
        font-size: 1.25rem !important;
        margin-bottom: 0.25rem !important;
    }

.academic-year {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

/* Compact detail cards */
.admission-detail-card {
    padding: 0.75rem !important;
    min-height: auto !important;
    border-left: 3px solid currentColor !important;
}

    .admission-detail-card .fas {
        font-size: 1rem !important;
    }

    .admission-detail-card .text-dark {
        font-size: 0.95rem !important;
    }

/* Alert */
.admission-banner-card .alert-warning {
    padding: 0.5rem !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
}

/* CTA section */
.admission-banner-card .col-lg-4 {
    background: var(--primary) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.admission-banner-card .btn-light {
    background: #ffffff !important;
    color: var(--primary) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

    .admission-banner-card .btn-light:hover {
        background: #f8f9fa !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .admission-banner-section {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .admission-banner-card {
        border-radius: 8px !important;
    }

        .admission-banner-card .col-lg-8,
        .admission-banner-card .col-lg-4 {
            padding: 1rem !important;
        }

        .admission-banner-card .col-lg-4 {
            border-left: none !important;
            border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        }

        .admission-banner-card h4 {
            font-size: 1.1rem !important;
        }

    .admission-detail-card {
        margin-bottom: 0.5rem !important;
    }

    .admission-banner-card .row {
        margin: 0 !important;
    }
}