/* Custom styles for Cambium Arbor */

:root {
    --pico-font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --pico-border-radius: 0.5rem;
}

/* Custom Header Image / Hero Background */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/drone-shot.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    border-radius: var(--pico-border-radius);
    margin-bottom: 3rem;
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

/* Profile Icons for Team Section */
.profile-icon {
    width: 60px;
    height: 60px;
    background-color: var(--pico-primary-background);
    color: var(--pico-primary-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer spacing */
footer {
    margin-top: 3rem;
    text-align: center;
    opacity: 0.7;
}

/* Map Styling */
#map {
    height: 350px;
    width: 100%;
    border-radius: var(--pico-border-radius);
    margin-top: 1rem;
    border: 1px solid var(--pico-muted-border-color);
    z-index: 1; /* Ensure it sits nicely in the layout */
}
