/* style/about-our-team.css */
.page-about-our-team {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

.page-about-our-team .highlight {
    color: #FFD700; /* Gold highlight for 88king */
}

.page-about-our-team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-about-our-team__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-about-our-team__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-about-our-team__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #eee;
}

/* Buttons */
.page-about-our-team__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-about-our-team__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    margin-right: 15px;
}

.page-about-our-team__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-about-our-team__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-about-our-team__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

/* Section Titles */
.page-about-our-team__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    font-weight: bold;
}

.page-about-our-team__section-description {
    font-size: 1.2em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #ccc;
}

/* Introduction Section */
.page-about-our-team__introduction {
    padding: 80px 0;
    background-color: #222;
}

.page-about-our-team__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-about-our-team__text-content {
    flex: 2;
    min-width: 300px;
}

.page-about-our-team__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-about-our-team__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-about-our-team__image-full {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* Leadership Section */
.page-about-our-team__leadership {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-about-our-team__team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-about-our-team__team-member {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-our-team__team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.page-about-our-team__member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #FFD700;
}

.page-about-our-team__member-name {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 5px;
    font-weight: bold;
}

.page-about-our-team__member-title {
    font-size: 1.1em;
    color: #bbb;
    margin-bottom: 15px;
}

.page-about-our-team__member-bio {
    font-size: 0.95em;
    color: #ccc;
}

/* Departments Section */
.page-about-our-team__departments {
    padding: 80px 0;
    background-color: #222;
}

.page-about-our-team__department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-about-our-team__department-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-our-team__department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.page-about-our-team__department-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-about-our-team__department-name {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-about-our-team__department-description {
    font-size: 1em;
    color: #ccc;
}

/* Values Section */
.page-about-our-team__values {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-about-our-team__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-about-our-team__value-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-our-team__value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.page-about-our-team__value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px #FFD700);
}

.page-about-our-team__value-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-about-our-team__value-description {
    font-size: 0.95em;
    color: #ccc;
}

/* CTA Section */
.page-about-our-team__cta {
    background-color: #8B0000; /* Dark Red */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-about-our-team__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-about-our-team__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-about-our-team__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about-our-team__hero-title {
        font-size: 2.8em;
    }
    .page-about-our-team__hero-subtitle {
        font-size: 1.2em;
    }
    .page-about-our-team__section-title {
        font-size: 2.2em;
    }
    .page-about-our-team__content-wrapper {
        flex-direction: column;
    }
    .page-about-our-team__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-about-our-team__hero {
        padding: 80px 0;
    }
    .page-about-our-team__hero-title {
        font-size: 2.2em;
    }
    .page-about-our-team__hero-subtitle {
        font-size: 1em;
    }
    .page-about-our-team__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about-our-team__btn--primary {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-about-our-team__section-title {
        font-size: 1.8em;
    }
    .page-about-our-team__section-description {
        font-size: 1em;
    }
    .page-about-our-team__team-member, .page-about-our-team__department-card, .page-about-our-team__value-item {
        padding: 25px;
    }
    .page-about-our-team__member-name {
        font-size: 1.5em;
    }
    .page-about-our-team__department-name {
        font-size: 1.4em;
    }
    .page-about-our-team__value-title {
        font-size: 1.3em;
    }
    .page-about-our-team__cta-title {
        font-size: 2.5em;
    }
    .page-about-our-team__cta-description {
        font-size: 1.1em;
    }
    .page-about-our-team__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-about-our-team__hero {
        padding: 60px 0;
    }
    .page-about-our-team__hero-title {
        font-size: 1.8em;
    }
    .page-about-our-team__hero-subtitle {
        font-size: 0.9em;
    }
    .page-about-our-team__btn {
        width: 90%;
        box-sizing: border-box;
    }
    .page-about-our-team__section-title {
        font-size: 1.6em;
    }
    .page-about-our-team__section-description {
        font-size: 0.9em;
    }
    .page-about-our-team__cta-title {
        font-size: 2em;
    }
    .page-about-our-team__cta-description {
        font-size: 1em;
    }
}