/*
Theme Name:Adarsha School WP Theme
Theme URI: https://example.com/school-glass
Author: Mohammad Roman
Description: Premium Glassmorphism Bangladeshi School Theme, ligth and fast .
Version: 1.2
*/

body { font-family: 'Noto Serif Bengali', serif; }

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Header */
.glass-header {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Menu Item Styling */
nav ul { display: flex; gap: 0.5rem; }
nav ul li a {
    display: block;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1; /* slate-300 */
    transition: all 0.2s;
}
nav ul li a:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}
/* Active menu item */
nav ul li.current-menu-item a {
    background: rgb(5, 150, 105); /* emerald-600 */
    color: white;
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3);
}

/* Slider CSS Logic */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.slide.active {
    opacity: 1;
    z-index: 10;
}
.text-gradient {
    background: linear-gradient(to right, #fff, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Print Styles for Marksheet & Admit Card */
@media print {
    body { background: white !important; color: black !important; }
    .glass-card, .glass-header, header, footer, .no-print { display: none !important; }
    .print-area { 
        display: block !important; 
        position: absolute; 
        left: 0; 
        top: 0; 
        width: 100%; 
        margin: 0; 
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        visibility: visible !important;
    }
    .print-area * { visibility: visible !important; }
}