/* Empire School About Us - Professional Branding Reversion */

:root {
    --empire-royal-blue: #003366;  /* Royal Blue */
    --empire-bright-red: #e61919;  /* Bright Red */
    --empire-light-blue: #e3f2fd;  /* Light Blue / Azure */
    --empire-white: #ffffff;
    --empire-text: #333333;
    --empire-text-light: #666666;
    --empire-shadow: 0 4px 12px rgba(0, 51, 102, 0.1);
}

.empire-about-us-container {
    background-color: var(--empire-white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--empire-text);
    scroll-behavior: smooth;
}

/* ════════════════════════════════════════════════════════════════
   HERO HEADER (Clean & Branded)
   ════════════════════════════════════════════════════════════════ */
.empire-hero-header {
    background-color: var(--empire-white);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--empire-light-blue);
}

.empire-hero-title {
    color: var(--empire-royal-blue);
    font-size: 3rem;
    font-weight: 800; /* Bold & Professional */
    margin: 0;
    text-transform: uppercase;
}

.empire-hero-tagline {
    color: var(--empire-bright-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.empire-hero-subtitle {
    font-size: 1.3rem;
    color: var(--empire-text-light);
    font-weight: 600;
    margin-top: 10px;
}

.empire-hero-actions {
    margin-top: 30px;
}

.empire-hero-secondary-btn {
    display: inline-block;
    color: var(--empire-royal-blue);
    border: 2px solid var(--empire-royal-blue);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.empire-hero-secondary-btn:hover {
    background: var(--empire-royal-blue);
    color: white;
}

/* ════════════════════════════════════════════════════════════════
   WELCOME SECTION
   ════════════════════════════════════════════════════════════════ */
.empire-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.empire-welcome-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.empire-welcome-text {
    flex: 1;
    min-width: 300px;
}

.empire-section-title {
    color: var(--empire-royal-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 4px solid var(--empire-bright-red);
    display: inline-block;
    padding-bottom: 5px;
}

.empire-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--empire-text);
}

/* ════════════════════════════════════════════════════════════════
   VISION, VALUES & COMMUNITY
   ════════════════════════════════════════════════════════════════ */
.empire-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.empire-value-card {
    background: var(--empire-white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--empire-light-blue);
    transition: all 0.3s ease;
}

.empire-value-card:hover {
    border-color: var(--empire-royal-blue);
}

.empire-value-icon {
    font-size: 40px !important;
    width: 40px !important;
    height: 40px !important;
    color: var(--empire-bright-red);
    margin-bottom: 15px;
}

.empire-value-card h3 {
    color: var(--empire-royal-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.empire-content-small {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--empire-text-light);
}

/* ════════════════════════════════════════════════════════════════
   STAFF DIRECTORY
   ════════════════════════════════════════════════════════════════ */
.empire-staff-directory {
    background: var(--empire-light-blue);
    padding: 80px 0;
}

.empire-directory-intro {
    text-align: center;
    margin-bottom: 50px;
}

.empire-section-title-center {
    font-size: 2.5rem;
    color: var(--empire-royal-blue);
    margin-bottom: 10px;
}

.empire-section-subtitle-center {
    font-size: 1.1rem;
    color: var(--empire-text-light);
}

.empire-staff-group-container {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.empire-group-title {
    font-size: 1.8rem;
    color: var(--empire-royal-blue);
    margin-bottom: 25px;
    border-left: 5px solid var(--empire-bright-red);
    padding-left: 15px;
}

.empire-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.empire-staff-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.empire-staff-header {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
}

.empire-staff-image-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--empire-royal-blue);
}

.empire-staff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.empire-staff-name {
    font-size: 1.1rem;
    color: var(--empire-royal-blue);
    margin: 0 0 3px;
}

.empire-staff-position {
    font-size: 0.9rem;
    color: var(--empire-bright-red);
    font-weight: 600;
}

.empire-card-toggle {
    margin-left: auto;
    color: var(--empire-royal-blue);
}

.empire-staff-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f9f9f9;
}

.empire-staff-details-inner {
    padding: 15px;
}

.empire-staff-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--empire-text);
}

/* ════════════════════════════════════════════════════════════════
   LOCATION & CTA
   ════════════════════════════════════════════════════════════════ */
.empire-location-section {
    background: var(--empire-white);
    padding-bottom: 40px;
}

.empire-cta-section {
    background: var(--empire-light-blue);
    padding: 80px 20px;
    text-align: center;
    border-radius: 0; /* Remove any rounding that makes it a floating box */
}

.empire-cta-content h2 {
    color: var(--empire-royal-blue);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.empire-cta-content p {
    color: var(--empire-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.empire-cta-button {
    background: var(--empire-bright-red);
    color: white !important;
    padding: 18px 50px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empire-cta-button:hover {
    background: var(--empire-royal-blue);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════════════════════════
   PARENT ORGANIZATION SECTION
   ════════════════════════════════════════════════════════════════ */
.empire-parent-org-section {
    border-top: 1px solid #eee;
    padding-top: 40px;
    margin-top: 40px;
}

.empire-parent-org-section.is-static {
    border-top: 2px solid var(--empire-light-blue);
    padding-top: 60px;
    margin-top: 80px;
}

.empire-parent-org-content {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.empire-parent-logo {
    flex-shrink: 0;
    max-width: 180px;
}

.empire-parent-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
}

.empire-parent-info {
    flex: 1;
}

.empire-parent-info h3 {
    color: var(--empire-royal-blue);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.empire-parent-org-content-wrapper {
    flex-direction: column;
}

.empire-parent-overview {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.empire-founding-board {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.empire-section-subtitle {
    color: var(--empire-royal-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* Board Grid & Cards */
.empire-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
}

.empire-board-card {
    background: white;
    padding: 40px 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    border-top: 4px solid var(--empire-royal-blue);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.empire-board-image-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--empire-royal-blue);
}

.empire-board-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.empire-board-name {
    color: var(--empire-royal-blue);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 5px;
}

.empire-board-position {
    color: var(--empire-bright-red);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.empire-board-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--empire-text-light);
}

@media (max-width: 768px) {
    .empire-parent-org-content {
        padding: 40px 15px;
        gap: 40px;
    }
    .empire-parent-overview {
        flex-direction: column;
        text-align: center;
    }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════
   RESPONSIVE (Mobile First Refinements)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .empire-hero-title { font-size: 2.5rem; }
    .empire-section { margin: 40px auto; }
}

@media (max-width: 768px) {
    /* Hero */
    .empire-hero-header { padding: 40px 15px; }
    .empire-hero-title { font-size: 1.8rem; }
    .empire-hero-tagline { font-size: 0.8rem; letter-spacing: 1px; }
    .empire-hero-subtitle { font-size: 1.1rem; }
    .empire-hero-secondary-btn { width: 100%; box-sizing: border-box; }

    /* Sections General */
    .empire-section { padding: 0 15px; margin: 30px auto; }
    .empire-section-title { font-size: 1.8rem; }
    
    /* Welcome */
    .empire-welcome-grid { gap: 20px; }
    .empire-welcome-text { min-width: 100%; order: 2; }
    .empire-welcome-decoration { min-width: 100%; order: 1; margin-bottom: 20px; height: 180px; }

    /* Grids to Single Column */
    .empire-values-grid,
    .empire-staff-grid,
    .empire-board-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Staff Cards */
    .empire-staff-directory { padding: 40px 0; }
    .empire-staff-header { padding: 12px; }
    .empire-staff-image-wrapper { width: 55px; height: 55px; }
    .empire-staff-name { font-size: 1rem; }
    .empire-group-title { font-size: 1.5rem; margin-bottom: 15px; }

    /* Board Cards */
    .empire-board-grid { grid-template-columns: 1fr; gap: 20px; }
    .empire-board-card { padding: 30px 15px; width: 100%; box-sizing: border-box; }
    .empire-board-image-wrapper { width: 110px; height: 110px; margin-bottom: 15px; }
    .empire-board-name { font-size: 1.1rem; }
    .empire-board-bio { font-size: 0.95rem; line-height: 1.5; }

    /* CTA Section */
    .empire-cta-section { padding: 40px 15px; }
    .empire-cta-content h2 { font-size: 1.6rem; }
    .empire-cta-button { padding: 15px 30px; font-size: 1.1rem; width: 100%; box-sizing: border-box; }

    /* Location */
    .empire-location-content { flex-direction: column; text-align: center; }
    .empire-maps-button { width: 100%; display: block; margin-top: 15px; }

    /* Organization */
    .empire-parent-overview { flex-direction: column; text-align: center; gap: 20px; }
    .empire-parent-org-section.is-static { padding-top: 40px; margin-top: 50px; }
}

/* Small Device Polish (320px) */
@media (max-width: 360px) {
    .empire-hero-title { font-size: 1.6rem; }
    .empire-section-title { font-size: 1.5rem; }
}
