/* About Page Specific Styles */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../images/website-background-image.jpg') no-repeat center center;
    background-size: cover;
    padding: 200px 0px 140px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h2 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero-content .subtitle {
    font-weight: 300;
    font-family: var(--font-body);
}

/* History Section */
.history-section {
    padding: 6rem 0;
    background-color: var(--accent-color);
}

.history-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.history-text {
    flex: 1;
}

.history-timeline {
    flex: 1;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--light-color);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    justify-content: center;
    gap: 2rem;
}

.philosophy-item {
    flex: 1;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    color: var(--primary-color);
}

.philosophy-icon svg {
    width: 35px;
    height: 35px;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--accent-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.3rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../images/website-background-image.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
    .history-content {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .history-text{
        min-width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 140px 0px 100px 0px;
        margin-top: 70px;
    }
    
    .philosophy-pillars {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .philosophy-item {
        padding: 15px;
        width: 100%;
    }

    .history-timeline::before, .timeline-marker{
        display: none;
    }

    .timeline-item{
        padding-left: 0px;
        width: 100%;
    }
    
    .member-info{
        padding: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 480px) {
} 