/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.about-hero-content {
    text-align: center;
    color: var(--accent-white);
}

.about-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.about-subtitle {
    font-size: var(--font-size-xl);
    opacity: 0.9;
}

/* Story Section */
.story-section {
    padding: var(--spacing-4xl) 0;
    background: var(--accent-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.story-description {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.story-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-light);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: var(--spacing-4xl) 0;
    background: var(--accent-cream);
}

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

.value-card {
    background: var(--accent-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform var(--transition-base);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-2xl);
    color: var(--accent-white);
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

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

/* Team Section */
.team-section {
    padding: var(--spacing-4xl) 0;
    background: var(--accent-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.team-member {
    text-align: center;
    background: var(--accent-cream);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    transition: transform var(--transition-base);
}

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

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid var(--primary-gold);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.member-role {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--font-size-sm);
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: var(--spacing-4xl) 0;
    background: var(--secondary-black);
    color: var(--accent-white);
}

.process-section .section-title,
.process-section .section-subtitle {
    color: var(--accent-white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--accent-white);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    margin: 0 var(--spacing-xl);
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-gold);
}

.timeline-content p {
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gradient-gold);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--accent-white);
    margin-bottom: var(--spacing-lg);
}

.cta-content p {
    font-size: var(--font-size-xl);
    color: var(--accent-white);
    opacity: 0.9;
    margin-bottom: var(--spacing-2xl);
}

.cta-content .btn {
    background: var(--accent-white);
    color: var(--primary-gold);
    font-weight: 600;
    padding: var(--spacing-lg) var(--spacing-2xl);
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: var(--font-size-4xl);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .story-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-number {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-title {
        font-size: var(--font-size-3xl);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-3xl);
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
}