/* ========== WHO WE ARE PAGE STYLES ========== */

/* Variables for consistency */
:root {
    --primary-blue: #1464d1;
    --primary-red: #cc0000;
    --dark-blue: #0d4a9f;
    --light-gray: #f8f9fa;
    --medium-gray: #666;
    --dark-gray: #333;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    background: var(--light-gray);
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: inline;
}

.breadcrumbs a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: var(--medium-gray);
}

/* ========== MAIN CONTENT ========== */
.main-content {
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

/* ========== CERTIFICATION BADGES ========== */
.certification-section {
    padding: 50px 20px;
    background: var(--light-gray);
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-badge {
    width: 125px;
    height: 125px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    padding: 60px 20px;
}

.section-title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.subsection-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.content-box {
    margin-bottom: 40px;
}

.content-box h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.content-box p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-box a:hover {
    color: var(--primary-red);
}

.content-box strong {
    color: var(--dark-gray);
    font-weight: 700;
}

/* ========== DIVIDER ========== */
.divider {
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
    margin: 50px 0;
    border-radius: 2px;
}

/* ========== BADGE LINKS ========== */
.badge-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.badge-link:hover {
    opacity: 0.85;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .subsection-title {
        font-size: 1.2rem;
    }

    .content-box h3 {
        font-size: 1.2rem;
    }

    .content-box p {
        font-size: 1rem;
    }

    .badges-container {
        gap: 30px;
    }

    .cert-badge {
        width: 100px;
        height: 100px;
    }

    .content-section {
        padding: 40px 15px;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .certification-section {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .badges-container {
        flex-direction: column;
        gap: 20px;
    }

    .cert-badge {
        width: 90px;
        height: 90px;
    }
}

/* ========== CENTERED TEXT FOR MEMBERSHIPS ========== */
.memberships-section {
    padding: 40px 20px;
    background: var(--light-gray);
}

.centered-title {
    text-align: center;
}

.centered-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.6;
}

/* ========== 3-COLUMN INTRO BOXES ========== */
.intro-boxes {
    display: flex;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.intro-box {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.intro-box-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.intro-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-box-image:hover img {
    transform: scale(1.05);
}

.intro-box-content {
    padding: 30px;
}

.intro-box-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-box-text {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-box-text a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.intro-box-text a:hover {
    color: var(--primary-red);
}

.intro-box-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.intro-box-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.intro-box-links a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* ========== RESPONSIVE DESIGN FOR COLUMNS ========== */
@media (max-width: 1200px) {
    .intro-boxes {
        flex-direction: column;
    }
    
    .intro-box {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .intro-box-image {
        height: 200px;
    }
    
    .intro-box-content {
        padding: 20px;
    }
    
    .intro-box-title {
        font-size: 1.3rem;
    }
    
    .intro-box-text {
        font-size: 0.95rem;
    }
    
    .centered-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .intro-boxes {
        padding: 30px 15px;
    }
    
    .intro-box-image {
        height: 180px;
    }
    
    .intro-box-title {
        font-size: 1.2rem;
    }
}


/* ========== HIDDEN BREADCRUMB (SEO ONLY) ========== */
.hidden-breadcrumb {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
