/* ================================================
   LEADERSHIP PAGE STYLES
   ================================================ */

/* Remove gap between header and page content */
.main {
    padding-top: 0 !important;
}

/* Hero Section */
.leadership-hero {
    background-color: #161820;
    padding: 140px 0 60px 0;
    margin-top: 0;
}

.leadership-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.leadership-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.leadership-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
}

/* Introduction Section */
.leadership-intro {
    background-color: #ffffff;
    padding: 60px 0;
}

.leadership-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.leadership-intro__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.leadership-intro__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: left;
}

.leadership-intro__text:last-child {
    margin-bottom: 0;
}

/* Leadership Team Section */
.leadership-team {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.leadership-team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Leader Profile */
.leader-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.leader-profile.visible {
    opacity: 1;
    transform: translateY(0);
}

.leader-profile__photo {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.leader-profile__photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
    border: 2px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.leader-profile__photo-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-profile__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.leader-profile__photo:hover .leader-profile__photo-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.leader-profile__photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.leader-profile__photo:hover::before {
    opacity: 0;
}

.leader-profile__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-profile__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #161820;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-profile__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #666666;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-profile__bio {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.leader-profile__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.leader-profile__credential {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #161820;
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Leadership Values Section */
.leadership-values {
    background-color: #ffffff;
    padding: 80px 0;
}

.leadership-values__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.leadership-values__content {
    text-align: center;
}

.leadership-values__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #161820;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-item__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #161820;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-item__description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Section */
.leadership-cta {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.leadership-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.leadership-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #161820;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-cta__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.leadership-cta__button {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #161820;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.leadership-cta__button:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

/* Tablet Styles */
@media (max-width: 1023px) and (min-width: 768px) {
    .leadership-hero {
        padding: 60px 0 40px 0;
    }
    
    .leadership-hero__container {
        padding: 0 30px;
    }
    
    .leadership-hero__title {
        font-size: 40px;
    }
    
    .leadership-hero__subtitle {
        font-size: 18px;
    }
    
    .leadership-intro {
        padding: 40px 0;
    }
    
    .leadership-intro__container {
        padding: 0 30px;
    }
    
    .leadership-intro__text {
        font-size: 16px;
    }
    
    .leadership-team {
        padding: 60px 0;
    }
    
    .leadership-team__container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .leader-profile {
        grid-template-columns: 250px 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .leader-profile__photo {
        width: 200px;
        height: 200px;
        border: 5px solid #ffffff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .leader-profile__name {
        font-size: 28px;
    }
    
    .leader-profile__title {
        font-size: 16px;
    }
    
    .leader-profile__bio {
        font-size: 15px;
    }
    
    .leadership-values {
        padding: 60px 0;
    }
    
    .leadership-values__container {
        padding: 0 30px;
    }
    
    .leadership-values__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .values-grid {
        gap: 30px;
    }
    
    .value-item__title {
        font-size: 20px;
    }
    
    .value-item__description {
        font-size: 15px;
    }
    
    .leadership-cta {
        padding: 60px 0;
    }
    
    .leadership-cta__container {
        padding: 0 30px;
    }
    
    .leadership-cta__title {
        font-size: 32px;
    }
    
    .leadership-cta__text {
        font-size: 16px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .leadership-hero {
        padding: 40px 0 30px 0;
    }
    
    .leadership-hero__container {
        padding: 0 20px;
    }
    
    .leadership-hero__title {
        font-size: 32px;
    }
    
    .leadership-hero__subtitle {
        font-size: 16px;
    }
    
    .leadership-intro {
        padding: 30px 0;
    }
    
    .leadership-intro__container {
        padding: 0 20px;
    }
    
    .leadership-intro__text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .leadership-team {
        padding: 40px 0;
    }
    
    .leadership-team__container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }
    
    .leader-profile__photo {
        width: 160px;
        height: 160px;
        margin: 0 auto;
        border: 4px solid #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .leader-profile__name {
        font-size: 24px;
    }
    
    .leader-profile__title {
        font-size: 14px;
    }
    
    .leader-profile__bio {
        font-size: 14px;
        text-align: left;
    }
    
    .leader-profile__credentials {
        justify-content: center;
    }
    
    .leadership-values {
        padding: 40px 0;
    }
    
    .leadership-values__container {
        padding: 0 20px;
    }
    
    .leadership-values__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-item__title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .value-item__description {
        font-size: 14px;
    }
    
    .leadership-cta {
        padding: 40px 0;
    }
    
    .leadership-cta__container {
        padding: 0 20px;
    }
    
    .leadership-cta__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .leadership-cta__text {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .leadership-cta__button {
        font-size: 14px;
        padding: 14px 28px;
    }
}
