/* about.css - About page specific styles */

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../images/Tall_logo.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 70px;
}

.about-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.founder-quote {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.founder-quote p {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.founder-quote cite {
    color: #777;
    font-size: 0.9rem;
    font-style: normal;
}

.story-image {
    height: 800px;
    width: 800px;
    background-color: #f5f5f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    text-align: center;
    color: #999;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ccc;
}

/* Mission, Vision & Values */
.mvp-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #111 0%, var(--primary-black) 100%);
    color: var(--white);
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvp-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.mvp-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
}

.mvp-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.mvp-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.mvp-card p {
    color: #cccccc;
    line-height: 1.6;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.value-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-card .team-image {
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-info {
    padding: 1.5rem;
}

.team-card h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-card.small {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.team-card.small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-expand {
    text-align: center;
    margin-top: 2rem;
}

/* Impact & Certifications */
.impact-cert-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.impact-cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.impact-side h2, .cert-side h2 {
    color: var(--primary-black);
    margin-bottom: 2rem;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.impact-stat h4 {
    font-size: 2rem;
    color: var(--primary-gold);
    min-width: 60px;
    font-family: var(--font-heading);
}

.impact-stat p {
    color: #555;
    line-height: 1.6;
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.cert-badge i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    min-width: 30px;
}

.cert-badge span {
    color: #555;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mvp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-cert-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mvp-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 6rem 0 4rem;
    }
}