﻿/* Sky Light Theme - Complete Variables */
:root {
    /* Primary Colors */
    --primary: #0288d1;
    --secondary: #b3e5fc;
    --accent: #4fc3f7;
    /* Gradient Colors */
    --gradient-start: #0288d1;
    --gradient-end: #0277bd;
    --gradient-footer-start: #01579b;
    --gradient-footer-end: #002b5c;
    /* Light Colors */
    --light: #e1f5fe;
    --dark: #0277bd;
    /* Semantic Colors */
    --danger: #f44336;
    --warning: #ff9800;
    --success: #4caf50;
    --info: #00bcd4;
    /* Text Colors */
    --text: #01579b;
    --text-light: #0288d1;
    --white: #ffffff;
    --gray: #e1f5fe;
    /* Shadow */
    --shadow: rgba(2, 136, 209, 0.1);
}

/* Top Bar - Darker shade of primary */
.top-bar {
    background: var(--dark, #0277bd) !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%);
}

.navbar-custom {
    background-color: var(--primary) !important;
}

    .navbar-custom .nav-link-custom {
        color: #ffffff !important;
    }

.nav-link-custom.active {
    color: #ffffff !important;
    border-bottom-color: #ffffff;
}

.nav-link-custom:hover {
    background-color: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}

.footer {
    background: linear-gradient(135deg, var(--gradient-footer-start) 0%, var(--gradient-footer-end) 100%);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
}

    .btn-primary:hover {
        background-color: #29b6f6;
        border-color: #29b6f6;
    }

.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;
    }
}