/* Color Palette: PNW & Indigenous Infused */
:root {
    --forest-green: #2D4030;
    --mist-teal: #7FB5B5;
    --slate: #4A5D66;
    --clay: #B2593D;
    --clean-white: #F9FBFC;
    --text-dark: #1A1A1A;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--clean-white);
    margin: 0;
}

/* Banner Image from Unsplash */
.hero {
    background: linear-gradient(rgba(45, 64, 48, 0.7), rgba(45, 64, 48, 0.7)), 
                url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

ul a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
}

.cta-nav {
    color: var(--clay) !important;
    border: 1.5px solid var(--clay);
    padding: 8px 15px;
    border-radius: 4px;
}

.container {
    padding: 60px 10%;
    max-width: 1200px;
    margin: auto;
}

.bg-alt {
    background-color: #EBF2F2;
}

h2 {
    color: var(--forest-green);
    border-bottom: 2px solid var(--mist-teal);
    display: inline-block;
    margin-bottom: 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-top: 5px solid var(--mist-teal);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.supply-box {
    background: var(--slate);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.supply-box h2 {
    color: var(--clean-white);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cta-button {
    background-color: var(--clay);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 40px;
    background: var(--forest-green);
    color: white;
}