/* --- MANAGEMENT PREMIUM GLASSMORPHISM STYLES --- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.mgmt-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: none; 
}

/* Patron Cards - Larger */
.patron-card {
    width: 320px;
    padding: 20px;
}

/* Admin Cards - Standard Grid */
.admin-card {
    padding: 15px;
}

/* Image Frames */
.mgmt-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f1f1;
}

.mgmt-img-wrapper.small {
    aspect-ratio: 1/1; 
    border-radius: 50%; 
    width: 160px;
    height: 160px;
    margin: 15px auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mgmt-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; 
}

/* Typography */
.mgmt-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--burgundy-dark);
    margin-bottom: 5px;
}

.mgmt-content p {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Governance Cards - Minimalist */
.gov-card {
    background: rgba(128, 0, 32, 0.03); 
}

/* Face Centering Nudges */
.nudge-up { object-position: center 5% !important; }
.nudge-down { object-position: center 25% !important; }

/* Padding for the top section title (To avoid Nav overlap) */
.pt-nav-fix {
    padding-top: 200px !important; /* Matches HSS Hero Clearance */
}

/* ============================================================
    FIXED MOBILE NAVBAR (MATCHES HSS STYLE)
   ============================================================ */
@media (max-width: 768px) {
    .school-navbar {
        padding: 15px 0 !important; 
        min-height: 90px;
        display: flex;
        align-items: center;
    }

    /* Tight grouping for the brand text */
    .brand-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0 !important; /* Kills the gap between name and location */
    }

    .name-main {
        font-size: 1.6rem !important; 
        line-height: 1.1 !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .name-sub {
        font-size: 1.0rem !important;
        line-height: 1.1 !important;
        margin: 0 !important;
        color: #3498db !important; /* Brighter blue for the location text */
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Centers the Hamburger Menu vertically */
    .nav-toggle {
        top: 50% !important;
        transform: translateY(-50%) !important;
        right: 15px !important;
        font-size: 26px;
    }

    /* Title protection */
    h1, .text-5xl {
        font-size: 2.5rem !important;
        line-height: 1.2;
        overflow-wrap: break-word;
    }

    .pt-nav-fix {
        padding-top: 170px !important;
    }
}
