/* About Page Specific Styles */

.about-section {
    background: white;
    min-height: 100vh;
    padding: 40px 0 80px 0;
    display: flex;
    align-items: center;
}

.statement-content {
    padding-right: 60px;
}

.statement-content .headerText h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.statement-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
    text-align: justify;
}

.cv-links {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
    gap: 20px;
}

.artist-photo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-photo img {
    max-height: 80vh;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-section {
        padding: 100px 0 60px 0;
    }
    
    .statement-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .statement-content .headerText h2 {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .artist-photo img {
        max-height: 60vh;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0 40px 0;
    }
    
    .statement-content .headerText h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .statement-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .cv-links {
        justify-content: center;
        margin-top: 30px;
    }
    
    .artist-photo img {
        max-height: 50vh;
    }
}

@media (max-width: 576px) {
    .statement-content .headerText h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .statement-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .cv-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .artist-photo img {
        max-height: 40vh;
    }
} 