/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 50%, #ecfdf5 100%);
    background-image: url('../images/bg-splash.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #1f2937;
    padding: 8rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    color: #047857;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #1f2937;
}

.gradient-text {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Founder Story Section */
.founder-story {
    padding: 8rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.story-paragraphs p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #14b8a6;
    margin-top: 2rem;
}

.story-highlight strong {
    color: #1f2937;
}

.founder-card {
    position: relative;
    margin-bottom: 2rem;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #14b8a6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-logo {
    width: 24px;
    height: 24px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
}

.badge-title {
    font-size: 0.75rem;
    color: #666;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.timeline-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.timeline-icon.software {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
}

.timeline-icon.ecommerce {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.timeline-icon.etsy {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* Problem & Solution Section */
.problem-solution {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.problem-card, .solution-card {
    padding: 3rem;
    border-radius: 20px;
    background: white;
}

.problem-card {
    border: 2px solid #fca5a5;
}

.solution-card {
    border: 2px solid #86efac;
}

.problem-card h3, .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.problem-list, .solution-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item, .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-item i {
    color: #ef4444;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.solution-item i {
    color: #22c55e;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.problem-item p, .solution-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Why This Matters Section */
.why-matters {
    padding: 8rem 0;
    background: white;
}

.matters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.matter-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    background: white;
    transition: all 0.3s ease;
}

.matter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #14b8a6;
}

.matter-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.matter-icon.target {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
}

.matter-icon.lightning {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.matter-icon.heart {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.matter-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.matter-card p {
    color: #666;
    line-height: 1.6;
}

/* Mission & Values Section */
.mission-values {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
}

.mission-section {
    margin-bottom: 6rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #14b8a6;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #14b8a6;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.value-icon.visual {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
}

.value-icon.seller {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.value-icon.innovation {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.value-icon.transparency {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.value-icon.growth {
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
}

.value-icon.community {
    background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Future Preview Section */
.future-preview {
    padding: 8rem 0;
    background: white;
}

.future-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.future-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.future-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
}

.future-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.future-feature {
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.future-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #14b8a6;
}

.future-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.future-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.future-feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.future-cta {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #14b8a6;
    max-width: 800px;
    margin: 0 auto;
}

.future-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.future-cta p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mission Section (Legacy) */
.mission {
    padding: 8rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item i {
    color: #14b8a6;
    font-size: 1.25rem;
}

.value-item span {
    font-weight: 500;
    color: #1f2937;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    border-radius: 15px;
    border: 2px solid #14b8a6;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .matters-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .future-features {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .experience-timeline {
        gap: 1rem;
    }
    
    .founder-badge {
        position: static;
        margin-top: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
} 