@import url('https://fonts.googleapis.com/css2?family=BBH+Bogle&display=swap');

/* About Page Specific Styles */
.site .main-wrapper {
    margin-top: 2rem;
}

.about-hero {
    background: linear-gradient(135deg, rgba(0, 135, 83, 0.1), rgba(214, 69, 74, 0.05));
    padding: 3rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 135, 83, 0.2);
}

.about-hero h1 {
    color: var(--theme-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "BBH Bogle", sans-serif;
}

.about-hero .lead {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 700px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-section h2 {
    color: var(--theme-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: "BBH Bogle", sans-serif;
}

.about-section h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(0, 135, 83, 0.1), rgba(214, 69, 74, 0.05));
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--theme-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 4px 16px rgba(0, 135, 83, 0.1);
    transform: translateY(-2px);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        grid-template-columns: 2fr 1fr;
    }
}

.team-member {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-font);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 135, 83, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--theme-green);
    background: rgba(0, 135, 83, 0.03);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--theme-green), rgba(0, 135, 83, 0.3));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.team-info h4 {
    color: var(--theme-green);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.team-info p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 135, 83, 0.1), rgba(214, 69, 74, 0.05));
    border-radius: var(--radius);
    border-top: 3px solid var(--theme-green);
    text-align: center;
}

.value-item h3 {
    color: var(--theme-green);
    margin-top: 0;
}

.value-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--theme-green);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 135, 83, 0.3);
}

.main-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}


/* Responsive Design for About Page */
@media (max-width: 980px) {
    .about-hero {
        padding: 2rem 1rem;
    }

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

    .about-section {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .about-hero {
        padding: 1.5rem 1rem;
    }

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

    .about-hero .lead {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 620px) {
    .about-hero {
        padding: 1.25rem 1rem;
        margin-bottom: 1.5rem;
    }

    .about-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .about-hero .lead {
        font-size: 0.95rem;
    }

    .about-section {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    .about-section h3 {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .about-card {
        padding: 1rem;
        border-radius: 8px;
    }

    .team-member {
        padding: 1rem;
    }

    .team-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .team-info h4 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.85rem;
    }

    .value-item {
        padding: 1rem;
        text-align: center;
    }

    .value-item h3 {
        font-size: 1rem;
    }

    .value-item p {
        font-size: 0.85rem;
    }

    .contact-nav-item {
        display: none !important;
    }

    header nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}
