/* About Page Specific Styles */

.about-main {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    padding: 0;
    width: 100%;
    background: linear-gradient(to bottom, #c8b898 0%, #faf8f5 18%);
}

.about-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/petaluma-gallery/petaluma-3.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
}

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

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

.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-photo-wrap {
    width: 340px;
    flex-shrink: 0;
}

.about-photo {
    width: 100%;
    display: block;
}

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

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

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

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

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

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

    .about-photo-wrap {
        width: 100%;
    }

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

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