/* =================== ABOUT PAGE STYLES =================== */

/* --- Active Nav Link --- */
.nav__link--active {
    color: var(--primary-color);
    font-weight: 600;
}

/* --- About Hero Section --- */
.about-hero {
    background-color: var(--bg-color-light);
    padding: 120px 0 80px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.breadcrumb a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 0.8rem;
}

.about-hero__title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-color-light);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Our Story Section --- */
.story__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story__text .section__title {
    text-align: left;
    margin-bottom: 20px;
}

.story__text p {
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.story__image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* --- Our Values Section --- */
.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card__icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.value-card__description {
    color: var(--text-color-light);
}

/* --- Meet the Team Section --- */
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-card__info {
    padding: 25px;
}

.team-card__name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

.team-card__role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card__bio {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.team-card__socials a {
    color: var(--text-color-light);
    font-size: 1.1rem;
    margin: 0 8px;
    transition: var(--transition);
}

.team-card__socials a:hover {
    color: var(--secondary-color);
}

/* --- Our Process Section --- */
.process__timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.process-step__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--bg-color-light);
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.process-step__content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.process-step__content p {
    color: var(--text-color-light);
    font-size: 0.95rem;
}

/* --- Responsive Design for About Page --- */
@media (max-width: 768px) {
    .about-hero__title { font-size: 2.2rem; }
    .story__content { grid-template-columns: 1fr; }
    .story__image { margin-top: 30px; }
    .values__grid { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: 1fr; }
    .process__timeline { grid-template-columns: 1fr; }
}