/* ============================================
                   GOLDEN THEME - STAFF PAGE
                   ============================================ */

        :root {
            --gold-light: #f8e7a2;
            --gold-mid: #f5d06b;
            --gold-primary: #d4af37;
            --gold-dark: #b8962e;
            --gold-deep: #8a7a2a;
            --gold-glow: rgba(212, 175, 55, 0.35);
            --cream: #fcf9f0;
            --cream-dark: #f8f3e6;
            --text-dark: #3d3520;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: var(--cream);
            color: var(--text-dark);
        }

        /* ============================================
                   NAVBAR
                   ============================================ */
        .golden-navbar {
            background: linear-gradient(145deg, 
                #7a6a1e 0%, 
                #b8962e 25%, 
                #d4af37 50%, 
                #f5d06b 75%, 
                #d4af37 100%
            );
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .golden-navbar .navbar-brand {
            color: #fff;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .golden-navbar .navbar-brand i {
            color: var(--gold-light);
            margin-right: 10px;
        }

        .golden-navbar .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            padding: 0.5rem 1.2rem !important;
            border-radius: 30px;
        }

        .golden-navbar .nav-link:hover,
        .golden-navbar .nav-link.active {
            background: rgba(255, 255, 255, 0.2);
            color: #fff !important;
            transform: translateY(-2px);
        }

        .golden-navbar .nav-link i {
            margin-right: 6px;
        }

        /* ============================================
                   PAGE HEADER
                   ============================================ */
        .page-header {
            background: linear-gradient(135deg, 
                rgba(122, 106, 30, 0.1) 0%, 
                rgba(212, 175, 55, 0.15) 50%, 
                rgba(245, 208, 107, 0.1) 100%
            );
            padding: 3rem 0 2rem 0;
            border-bottom: 3px solid var(--gold-primary);
            position: relative;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-mid), var(--gold-primary), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .page-header h1 {
            font-weight: 700;
            color: var(--gold-deep);
            font-size: 2.8rem;
            letter-spacing: 2px;
        }

        .page-header h1 i {
            color: var(--gold-primary);
            margin-right: 12px;
        }

        .page-header p {
            color: var(--text-dark);
            font-size: 1.15rem;
            opacity: 0.8;
        }

        /* ============================================
                   SECTION DIVIDER
                   ============================================ */
        .section-divider {
            width: 80px;
            height: 3px;
            margin: 0 auto 1.5rem auto;
            background: linear-gradient(90deg, 
                transparent, 
                var(--gold-primary), 
                var(--gold-mid), 
                var(--gold-primary), 
                transparent
            );
            border-radius: 3px;
            position: relative;
        }

        .section-divider::before {
            content: '✦';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--gold-primary);
            font-size: 14px;
            background: var(--cream);
            padding: 0 14px;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        /* ============================================
                   SECTION TITLE
                   ============================================ */
        .section-title {
            color: var(--gold-deep);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .section-title i {
            color: var(--gold-primary);
        }

        .section-title .count-badge {
            display: inline-block;
            background: linear-gradient(145deg, var(--gold-primary), var(--gold-dark));
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }

        .section-subtitle {
            color: var(--text-dark);
            opacity: 0.7;
            font-size: 1rem;
            margin-top: -0.5rem;
        }

        /* ============================================
                   STAFF CARDS
                   ============================================ */
        .staff-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid rgba(212, 175, 55, 0.08);
            height: 100%;
            text-align: center;
            padding: 1.5rem 1rem;
        }

        .staff-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
            border-color: var(--gold-primary);
        }

        /* Staff Photo */
        .staff-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
            margin: 0 auto 1rem auto;
            display: block;
        }

        .staff-card:hover .staff-photo {
            border-color: var(--gold-primary);
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
        }

        /* Staff Name */
        .staff-name {
            font-weight: 700;
            color: var(--gold-deep);
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }

        .staff-card:hover .staff-name {
            color: var(--gold-primary);
        }

        /* Staff Designation */
        .staff-designation {
            font-size: 0.85rem;
            color: var(--text-dark);
            opacity: 0.7;
            font-weight: 500;
            margin-bottom: 0.3rem;
        }

        /* Staff Subject */
        .staff-subject {
            font-size: 0.8rem;
            color: var(--gold-primary);
            font-weight: 600;
            background: rgba(212, 175, 55, 0.08);
            padding: 0.2rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin-top: 0.3rem;
        }

        /* ============================================
                   LEADERSHIP CARDS (Principal & VP)
                   ============================================ */
        .leadership-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 3px solid rgba(212, 175, 55, 0.15);
            text-align: center;
            padding: 2rem 1.5rem;
            position: relative;
            height: 100%;
        }

        .leadership-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-mid), var(--gold-primary));
        }

        .leadership-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
            border-color: var(--gold-primary);
        }

        .leadership-card .staff-photo {
            width: 150px;
            height: 150px;
            border-width: 5px;
            border-color: var(--gold-primary);
        }

        .leadership-card .staff-name {
            font-size: 1.4rem;
            color: var(--gold-deep);
        }

        .leadership-card .staff-designation {
            font-size: 1rem;
            opacity: 0.8;
            font-weight: 600;
            color: var(--gold-primary);
        }

        .leadership-card .staff-subject {
            font-size: 0.9rem;
        }

        /* ============================================
                   NON-TEACHING STAFF
                   ============================================ */
        .non-teaching-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid rgba(212, 175, 55, 0.08);
            text-align: center;
            padding: 1.5rem 1rem;
            height: 100%;
        }

        .non-teaching-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
            border-color: var(--gold-primary);
        }

        .non-teaching-card .staff-photo {
            width: 100px;
            height: 100px;
        }

        /* ============================================
                   SECTION BACKGROUNDS
                   ============================================ */
        .section-light {
            background: var(--cream);
        }

        .section-dark {
            background: var(--cream-dark);
        }

        /* ============================================
                   FOOTER
                   ============================================ */
        .golden-footer {
            background: linear-gradient(145deg, 
                #7a6a1e 0%, 
                #b8962e 25%, 
                #d4af37 50%, 
                #f5d06b 75%, 
                #d4af37 100%
            );
            color: #fff;
            padding: 2rem 0;
            margin-top: 2rem;
        }

        .golden-footer p {
            margin: 0;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        .golden-footer i {
            color: var(--gold-light);
            margin: 0 4px;
        }

        /* ============================================
                   RESPONSIVE
                   ============================================ */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 2rem 0 1.5rem 0;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .page-header p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .leadership-card .staff-photo {
                width: 120px;
                height: 120px;
            }

            .leadership-card .staff-name {
                font-size: 1.2rem;
            }

            .staff-photo {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 1.1rem;
            }

            .leadership-card .staff-photo {
                width: 100px;
                height: 100px;
            }

            .staff-photo {
                width: 80px;
                height: 80px;
            }

            .staff-name {
                font-size: 0.95rem;
            }

            .leadership-card .staff-name {
                font-size: 1rem;
            }
        }

        /* Animations */
        .staff-card, .leadership-card, .non-teaching-card {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }