/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d35400;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: white;
}

.mission-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e67e22;
}

.mission-content > p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mission-values {
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-card h3 {
    color: #e67e22;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.process-card {
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.process-card img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.process-card h3 {
    color: #e67e22;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: #666;
    line-height: 1.6;
}

/* Vision Gallery */
.vision-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.vision-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d35400;
    font-weight: 600;
    margin-bottom: 3rem;
}

.mood-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.mood-board img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mood-board img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* About CTA Section */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn {
    background: white;
    color: #e67e22;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.about-cta .btn:hover {
    background: #f8f8f8;
    color: #d35400;
    transform: translateY(-3px);
}

.about-cta .btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.about-cta .btn-secondary:hover {
    background: white;
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-values {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .mood-board {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 0;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-section,
    .story-section,
    .process-section,
    .vision-gallery,
    .about-cta {
        padding: 3rem 0;
    }
    
    .mission-content h2,
    .story-section h2,
    .process-section h2,
    .vision-gallery h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .mission-values {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mood-board {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .mood-board img {
        height: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .mission-content > p,
    .about-cta p {
        font-size: 1rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .mission-values,
    .mood-board {
        grid-template-columns: 1fr;
    }
    
    .mood-board {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
    }
}
