/* ==========================================
   ABOUT PAGE STYLES
   Дата: 22 ноября 2025
   ========================================== */

.about-page {
    animation: fadeIn 0.4s ease-out;
}

/* === ABOUT HERO === */
.about-hero {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 120px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h1 {
    font-weight: 300;
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
}

.about-text .subtitle {
    font-size: 18px;
    color: #777;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* === BIOGRAPHY SECTION === */
.biography-section {
    padding: 80px 20px;
    background: #fff;
}

.biography-content {
    max-width: 800px;
    margin: 0 auto;
}

.biography-content h2 {
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #333;
}

.bio-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #ddd;
}

.bio-item .year {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.bio-item .event {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* === EXHIBITIONS SECTION === */
.exhibitions-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.exhibitions-content {
    max-width: 900px;
    margin: 0 auto;
}

.exhibitions-content h2 {
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.exhibition-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.exhibition-card .year {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.exhibition-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.exhibition-card .location {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* === AWARDS SECTION === */
.awards-section {
    padding: 80px 20px;
    background: #fff;
}

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

.awards-content h2 {
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #333;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.award-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 4px;
    border-left: 4px solid #333;
}

.award-item .title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
}

.award-item .details {
    font-size: 14px;
    color: #777;
}

/* === QUOTE SECTION === */
.quote-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9, #fff);
    text-align: center;
}

.quote-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-text {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 16px;
    color: #888;
    letter-spacing: 1px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        position: static;
    }
    
    .about-text h1 {
        font-size: 28px;
    }
    
    .biography-section,
    .exhibitions-section,
    .awards-section,
    .quote-section {
        padding: 50px 15px;
    }
    
    .biography-content h2,
    .exhibitions-content h2,
    .awards-content h2 {
        font-size: 24px;
    }
    
    .exhibitions-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-text {
        font-size: 20px;
    }
}
