/* About Page CSS - Luxury Heritage Styles for Ziyorate */

/* About Hero Section */
.about-hero {
    padding: var(--space-32) 0 var(--space-20);
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23D4AF37" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    animation: floatingPattern 20s linear infinite;
}

@keyframes floatingPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-eyebrow {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: var(--font-light);
    line-height: 1.1;
    color: var(--green-800);
    margin-bottom: var(--space-6);
}

.title-accent {
    color: var(--gold-600);
    display: block;
}

.hero-description {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-lg);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    border-radius: var(--radius-3xl);
}

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

/* Mission Section */
.mission-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

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

.mission-description {
    font-size: var(--text-xl);
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: var(--space-12);
}

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

.value-item {
    text-align: center;
    padding: var(--space-6);
    background: var(--cream-50);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-luxury);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-500);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--white);
    font-size: var(--text-2xl);
    box-shadow: var(--shadow-gold);
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--green-800);
    margin-bottom: var(--space-3);
}

.value-item p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Heritage Section */
.heritage-section {
    padding: var(--space-24) 0;
    background: var(--cream-50);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.heritage-image {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-lg);
}

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

.heritage-text {
    max-width: 500px;
}

.heritage-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-6);
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    color: var(--gold-600);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Founder Section */
.founder-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.founder-quote {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-style: italic;
    line-height: 1.6;
    color: var(--green-800);
    margin: var(--space-8) 0;
    padding-left: var(--space-6);
    border-left: 4px solid var(--gold-500);
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: var(--text-6xl);
    color: var(--gold-500);
    position: absolute;
    left: -var(--space-4);
    top: -var(--space-4);
    line-height: 1;
}

.founder-info {
    display: flex;
    gap: var(--space-6);
    align-items: center;
}

.founder-name {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--green-800);
    margin-bottom: var(--space-2);
}

.founder-title {
    font-size: var(--text-base);
    color: var(--gold-600);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.founder-bio {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.founder-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-lg);
}

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

/* Process Section */
.process-section {
    padding: var(--space-24) 0;
    background: var(--cream-50);
}

.process-steps {
    margin-top: var(--space-16);
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 400px;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-16);
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-luxury);
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.process-step.reverse {
    grid-template-columns: 400px 1fr 80px;
}

.process-step.reverse .step-number {
    order: 3;
}

.process-step.reverse .step-content {
    order: 2;
    text-align: right;
}

.process-step.reverse .step-visual {
    order: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold-500);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    box-shadow: var(--shadow-gold);
}

.step-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--green-800);
    margin-bottom: var(--space-3);
}

.step-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--neutral-600);
    margin-bottom: 0;
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* Community Section */
.community-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.community-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
}

.community-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.impact-item {
    text-align: center;
    padding: var(--space-4);
    background: var(--cream-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gold-500);
}

.impact-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    color: var(--gold-600);
    line-height: 1;
}

.impact-label {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.community-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-lg);
}

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

/* CTA Section */
.about-cta {
    padding: var(--space-20) 0;
    background: var(--green-800);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translateX(-100%) rotate(0deg); }
    50% { transform: translateX(100%) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-light);
    color: var(--white);
    margin-bottom: var(--space-6);
}

.cta-description {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

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

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .heritage-content,
    .founder-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .heritage-content .heritage-visual {
        order: -1;
    }
    
    .process-step,
    .process-step.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-6);
    }
    
    .process-step.reverse .step-content {
        text-align: center;
        order: 2;
    }
    
    .process-step.reverse .step-number {
        order: 1;
        margin: 0 auto;
    }
    
    .process-step.reverse .step-visual {
        order: 3;
    }
    
    .heritage-stats,
    .community-impact {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: var(--space-24) 0 var(--space-16);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-description,
    .mission-description {
        font-size: var(--text-lg);
    }
    
    .hero-image,
    .heritage-image,
    .founder-image,
    .community-image {
        height: 300px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }
    
    .heritage-stats,
    .community-impact {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .founder-quote {
        font-size: var(--text-xl);
        padding-left: var(--space-4);
    }
    
    .process-section {
        padding: var(--space-16) 0;
    }
    
    .step-image {
        height: 200px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .hero-image,
    .heritage-image,
    .founder-image,
    .community-image {
        height: 250px;
    }
    
    .stat-number,
    .impact-number {
        font-size: var(--text-2xl);
    }
    
    .founder-quote {
        font-size: var(--text-lg);
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
    
    .cta-description {
        font-size: var(--text-lg);
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .hero-title {
        font-size: var(--text-7xl);
    }
    
    .hero-image,
    .heritage-image,
    .founder-image,
    .community-image {
        height: 600px;
    }
    
    .process-step {
        grid-template-columns: 100px 1fr 500px;
        gap: var(--space-12);
    }
    
    .process-step.reverse {
        grid-template-columns: 500px 1fr 100px;
    }
    
    .step-number {
        width: 100px;
        height: 100px;
        font-size: var(--text-3xl);
    }
    
    .step-image {
        height: 300px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .about-hero {
        background: var(--white);
        border-bottom: 2px solid var(--neutral-800);
    }
    
    .value-icon {
        background: var(--neutral-800);
        color: var(--white);
    }
    
    .about-cta {
        background: var(--black);
        color: var(--white);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .about-hero::before,
    .about-cta::before {
        animation: none;
    }
    
    .process-step:hover,
    .value-item:hover {
        transform: none;
    }
    
    .animate-fade-in-up,
    .animate-on-scroll {
        animation: none;
        opacity: 1;
        transform: none;
    }
}