/* About Page Specific Styles */

.about-main {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
}

.about-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: var(--paper-white);
    border-bottom: 1px solid var(--border-color);
}

.about-hero h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.about-text h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    color: var(--accent);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--paper-white);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 400;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--accent-light);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 2.5rem;
    }

    .about-hero {
        padding: 4rem 1rem 3rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-content {
        margin: 2rem auto;
        padding: 0 1rem;
    }
}
