/* About Page Specific Styles */

.about-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #DDD5C7 0%, #D0C4B0 100%);
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    left: -30%;
    top: 0;
    width: 80%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="0" y="0" width="2" height="100" fill="%23D4B896" opacity="0.1"/><rect x="10" y="0" width="2" height="100" fill="%23D4B896" opacity="0.1"/><rect x="20" y="0" width="2" height="100" fill="%23D4B896" opacity="0.1"/></svg>') repeat;
    transform: skewX(-15deg);
}

.about-hero h1 {
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: #E8E0D3;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(107, 68, 35, 0.15));
}

/* Founder Section */
.founder-section {
    padding: 5rem 0;
    background-color: #E0D8CA;
}

.founder-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(107, 68, 35, 0.2);
}

.founder-label {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.1);
}

.founder-label h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.founder-label p {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.founder-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

/* Role Section */
.role-section {
    padding: 5rem 0;
    background-color: #D8CFC1;
}

.role-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.role-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.role-section .section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.role-card {
    background: #E8E0D3;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.12);
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.15);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.role-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.role-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.role-summary {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background: rgba(212, 184, 150, 0.15);
    border-radius: 12px;
    border: 2px solid var(--primary-tan);
}

.role-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Service Area Section */
.service-area-section {
    padding: 5rem 0;
    background-color: #E8E0D3;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-area-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-area-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-area-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-area-map img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(107, 68, 35, 0.2);
}

/* Community Message */
.community-message {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #3A3028 100%);
}

.message-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 184, 150, 0.3);
}

.message-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-tan);
    margin-bottom: 1.5rem;
}

.message-box p:last-of-type {
    margin-bottom: 0;
}

.message-signature {
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background-color: #E0D8CA;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-content,
    .founder-content,
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 3rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .mission-text h2,
    .founder-text h2,
    .service-area-text h2,
    .role-section .section-header h2,
    .about-cta h2 {
        font-size: 2rem;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .mission-text p,
    .founder-text p,
    .service-area-text p,
    .role-section .section-header p,
    .role-summary p {
        font-size: 1rem;
    }

    .message-box {
        padding: 2rem;
    }

    .message-box p {
        font-size: 1rem;
    }
}
