/* About Page Styles */

/* About Hero */
.about-hero {
    position: relative;
    height: 70vh;
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.about-hero p {
    font-size: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Brand Story */
.brand-story {
    padding: 5rem 0;
}

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

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.story-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Materials Section */
.materials-section {
    padding: 5rem 0;
}

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

.material-item {
    text-align: center;
}

.material-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.material-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.material-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--bg-light);
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.process-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: var(--border-color);
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.process-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sustainability Section */
.sustainability {
    padding: 5rem 0;
    background: #f0f8f0;
}

.sustainability-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sustainability-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sustainability-content .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.sustainability-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sustainability-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.sustainability-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: var(--transition);
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-member p {
    color: var(--text-secondary);
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero adjustments */
    .about-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Story section */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-content .lead {
        font-size: 1.1rem;
    }
    
    .story-image img {
        height: 300px;
    }
    
    /* Values, Materials, Sustainability, Team grids */
    .values-grid,
    .materials-grid,
    .sustainability-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Process timeline */
    .process-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-item:not(:last-child)::after {
        display: none;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    /* Section padding */
    .brand-story,
    .values,
    .materials-section,
    .process,
    .sustainability,
    .team,
    .about-cta {
        padding: 3rem 0;
    }
    
    /* Material images */
    .material-item img {
        height: 200px;
    }
    
    /* Team member images */
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    /* About CTA */
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
    
    /* Value card */
    .value-card {
        padding: 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Sustainability items */
    .sustainability-item {
        padding: 1.5rem;
    }
    
    /* General typography */
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    /* Ensure proper spacing on mobile */
    .container {
        padding: 0 1rem;
    }
}