/* css/about.css - About Section Styles with Organic Design */

/* About Section */
.about {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,150 Q100,100 150,150' fill='none' stroke='%237c8471' stroke-width='1' opacity='0.1'/%3E%3Cpath d='M30,170 Q100,120 170,170' fill='none' stroke='%23c9b8a8' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-repeat: repeat-x;
    opacity: 0.5;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
}

.about-content.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image img,
.about-image > div {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 200px 150px 200px 150px / 150px 200px 150px 200px;
    box-shadow: 0 20px 60px rgba(30, 58, 41, 0.2);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(124, 132, 113, 0.2);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--terracotta);
    z-index: 1;
    opacity: 0;
    animation: decorationSlide 0.8s ease 0.3s forwards;
    border-radius: 150px 200px 150px 200px / 200px 150px 200px 150px;
}

@keyframes decorationSlide {
    to {
        opacity: 0.5;
        top: -30px;
        left: -30px;
    }
}

/* About Text */
.about-text {
    padding: 2rem 0;
    position: relative;
}

.about-text .lead {
    font-size: 1.375rem;
    color: var(--walnut);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    text-align: justify;
}

/* About Achievements */
.about-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--sage-light);
    position: relative;
}

.about-achievements::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
}

.achievement {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.achievement::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='2' fill='%23bc6c3c' opacity='0.5'/%3E%3Ccircle cx='15' cy='15' r='5' fill='none' stroke='%23bc6c3c' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.about-content.animate-in .achievement {
    animation: fadeInUp 0.6s ease forwards;
}

.about-content.animate-in .achievement:nth-child(1) { animation-delay: 0.4s; }
.about-content.animate-in .achievement:nth-child(2) { animation-delay: 0.5s; }
.about-content.animate-in .achievement:nth-child(3) { animation-delay: 0.6s; }

.achievement h3 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
    font-style: italic;
    text-align: center;
}

.achievement p {
    font-size: 0.875rem;
    color: var(--olive);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Artist Process (Optional Additional Section) */
.artist-process {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--pure-white);
    border-left: 4px solid var(--terracotta);
}

.artist-process h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--forest-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.process-step {
    position: relative;
    padding-left: 2rem;
}

.process-step::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--terracotta);
    color: var(--warm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.process-steps {
    counter-reset: step;
}

.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--forest-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--olive);
    line-height: 1.6;
    margin: 0;
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about {
        padding: var(--spacing-xl) 0;
    }
    
    .about::before {
        width: 300px;
        height: 300px;
    }
    
    .about-text .lead {
        font-size: 1.125rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-achievements {
        gap: 1.5rem;
        padding-top: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .achievement h3 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-achievements {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement h3 {
        font-size: 2rem;
    }
    
    .about-image-decoration {
        display: none;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}