/* Leadership Page Specific Styles */

/* Hero Section */
.leadership-hero {
    min-height: 450px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    min-height: 450px;
}

.hero-image-section {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #242424;
}

.hero-title {
    color: #fff;
    font-size: 70px;
    font-weight: 900;
    margin: 0;
    text-align: center;
}

.hero-text-section {
    background-color: #508fae;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 76px;
}

.hero-text-section h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
}

/* Connect Section */
.connect-section {
    background-color: #fff;
    padding: 56px 20px 40px;
    text-align: center;
}

.connect-section h2 {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.connect-section .highlight {
    color: #508fae;
    font-weight: 700;
}

.connect-section p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Leadership Team Section */
.leadership-team {
    background-color: #fff;
    padding: 40px 20px 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 340px;
    height: 425px;
    margin: 0 auto 20px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 5px;
}

.team-member .role {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.btn-learn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background-color: #508fae;
    color: #fff;
    border-color: #508fae;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    text-align: center;
    justify-content: center;
}

.btn-white {
    background-color: #fff;
    color: #242424;
    border-color: #242424;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Footer */
.site-footer {
    background-color: #242424;
    color: #fff;
    padding: 56px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 900;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.footer-section p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section > h3:first-child {
    font-size: 34px;
    color: #fff;
    font-weight: 500;
}

.footer-section > h3:first-child strong {
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #fff;
    font-weight: 700;
}

.footer-links a:hover {
    color: #508fae;
}

.footer-bottom {
    background-color: #131313;
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    width: 139px;
    max-width: 100%;
    height: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: #535353;
}

.social-links a:hover svg {
    fill: #508fae;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: #fff;
    margin: 50px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: #242424;
    color: #fff;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 40px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px 40px 40px;
}

.btn-email {
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-email:hover {
    background-color: #508fae;
    color: #fff;
    border-color: #508fae;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text-section {
        padding: 50px 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-text-section h2 {
        font-size: 24px;
    }
    
    .connect-section h2 {
        font-size: 26px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .member-photo {
        width: 280px;
        height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-text-section {
        padding: 40px 20px;
    }
    
    .hero-text-section h2 {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section > h3:first-child {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text-section h2 {
        font-size: 18px;
    }
    
    .connect-section h2 {
        font-size: 22px;
    }
    
    .connect-section p {
        font-size: 14px;
    }
    
    .member-photo {
        width: 240px;
        height: 300px;
    }
    
    .team-member h3 {
        font-size: 16px;
    }
    
    .team-member .role {
        font-size: 13px;
    }
}