/* Modern About Page Styles - Based on Clothing Factory Design Patterns */

/* Modern Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(23, 23, 23, 0.8) 0%,
        rgba(23, 23, 23, 0.6) 50%,
        rgba(23, 23, 23, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
}

.hero-label {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero-content h1 {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-content h1 strong {
    font-weight: 400;
    color: var(--accent);
}

.hero-description {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Story Section */
.story {
    background: var(--white);
}

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

.story-content {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.story-image {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.2s forwards;
}

.story-content h2 {
    font-size: var(--text-4xl);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.story-content h2 strong {
    font-weight: 400;
    color: var(--accent);
}

.story-content p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

/* Modern Mission Section */
.mission {
    background: var(--gray-50);
}

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

.mission-content {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.2s forwards;
}

.mission-image {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.mission-content h2 {
    font-size: var(--text-4xl);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.mission-content h2 strong {
    font-weight: 400;
    color: var(--accent);
}

.mission-content p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

/* Modern Values Section */
.values {
    background: var(--white);
}

.values-header {
    margin-bottom: var(--spacing-4xl);
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.values-header h2 {
    font-size: var(--text-4xl);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.values-header h2 strong {
    font-weight: 400;
    color: var(--accent);
}

.values-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
}

.value-card {
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-none);
    transition: all var(--transition-normal);
    height: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-none);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    transition: all var(--transition-normal);
}

.value-card:hover .value-icon {
    background: var(--accent);
    color: var(--white);
}

.value-title {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.value-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Modern CTA Section */
.cta {
    background: linear-gradient(
        135deg,
        var(--gray-900) 0%,
        var(--gray-800) 100%
    );
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://picsum.photos/1920/400?random=cta-pattern') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: var(--text-4xl);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.cta h2 strong {
    font-weight: 400;
    color: var(--accent);
}

.cta p {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.cta-actions .btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

/* Navigation for About Page */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1rem);
    box-shadow: var(--shadow-sm);
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 500;
}

/* Section Label */
.section-label {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--spacing-md);
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-none);
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }

    .story-content,
    .mission-content {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: var(--text-4xl);
    }

    .hero-description {
        font-size: var(--text-lg);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .value-card {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-label {
        font-size: var(--text-xs);
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: var(--text-3xl);
    }

    .cta h2 {
        font-size: var(--text-3xl);
    }
}

/* Modern Animations for About Page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Additional Utility Classes */
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }

.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-900 { background-color: var(--gray-900); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mb-6 { margin-bottom: var(--spacing-lg); }
.mb-8 { margin-bottom: var(--spacing-xl); }
.mb-16 { margin-bottom: var(--spacing-3xl); }