/* About Us Page Specific Styles for NPCB Coloring Books */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(106, 76, 147, 0.8), rgba(106, 76, 147, 0.8)), 
                url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

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

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--accent-font);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Container for about sections */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Story Section */
.about-story {
    margin-bottom: 80px;
}

.about-story .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: var(--accent-font);
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Values Section */
.about-values {
    background-color: #f9f9f9;
    padding: 80px 0;
    margin-bottom: 80px;
}

.about-values h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--accent-font);
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
}

/* Team Section */
.about-team {
    margin-bottom: 80px;
}

.about-team h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--accent-font);
}

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

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.team-role {
    padding: 0 20px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.team-member p:not(.team-role) {
    padding: 0 20px 20px;
    color: #666;
}

/* Process Section */
.about-process {
    background-color: #f9f9f9;
    padding: 80px 0;
    margin-bottom: 80px;
}

.about-process h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--accent-font);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
}

/* Contact Section */
.about-contact {
    margin-bottom: 80px;
}

.about-contact h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: var(--accent-font);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: var(--accent-font);
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info p i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-info .social-icons {
    margin-top: 20px;
}

.contact-info .social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--main-font);
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-story .about-container {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-content h2,
    .about-values h2,
    .about-team h2,
    .about-process h2,
    .about-contact h2 {
        font-size: 1.8rem;
    }
}
