/* About Page Styles */

.about-page {
    padding: var(--space-6) var(--space-4);
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-header {
    text-align: center;
    margin-bottom: var(--space-12);
    animation: fadeInUp 0.6s ease-out;
}

.about-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.about-intro {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    background: var(--color-linen);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Founder Photo */
.founder-photo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-10);
}

.founder-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--color-sage-light);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Story Sections */
.story-section {
    margin-bottom: var(--space-10);
}

.story-section:last-of-type {
    margin-bottom: var(--space-8);
}

.story-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    font-weight: 600;
    line-height: 1.3;
}

.story-section p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.story-section p:last-child {
    margin-bottom: 0;
}

/* About Signature */
.about-signature {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-sage-light);
}

.about-signature p {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-sage);
    text-align: right;
    margin: 0;
    font-weight: 500;
}

/* Footer Navigation */
.about-footer-nav {
    margin-top: var(--space-8);
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.about-footer-nav .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-page {
        padding: var(--space-4) var(--space-2);
    }
    
    .about-content {
        padding: var(--space-6) var(--space-4);
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }

    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .story-section {
        margin-bottom: var(--space-8);
    }
    
    .story-section h2 {
        font-size: 1.25rem;
    }
    
    .about-footer-nav {
        margin-top: var(--space-6);
    }
    
    .about-footer-nav .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: var(--space-4);
        border-radius: var(--radius-lg);
    }
    
    .founder-image {
        width: 100px;
        height: 100px;
    }
    
    .story-section {
        margin-bottom: var(--space-6);
    }
    
    .story-section h2 {
        font-size: 1.125rem;
    }
}