/*
Theme Name: Prairie Helpers
Theme URI: https://bomandigital.com
Author: Boman Digital
Description: A custom task marketplace for Winnipeg, Manitoba.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: prairie-helpers
*/

:root {
    --prairie-blue: #004a7c;
    --wheat-gold: #f5e6be;
    --dark-earth: #3e2723;
    --winnipeg-white: #fdfdfd;
    --success-green: #2e7d32;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-earth);
    background-color: var(--winnipeg-white);
    margin: 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--prairie-blue);
    color: white;
    padding: 1rem 0;
}

header a { color: white; text-decoration: none; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,74,124,0.7), rgba(0,74,124,0.7)), url('images/prairie-bg.jpg');
    background-size: cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Task Cards */
.task-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.task-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s;
}

.task-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.status-badge {
    background: var(--wheat-gold);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Forms */
input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button, .button {
    background: var(--prairie-blue);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

button:hover { background: #00365a; }

/* Footer */
footer {
    background: var(--dark-earth);
    color: #ccc;
    padding: 40px 0;
    margin-top: 60px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-grid { grid-template-columns: 1fr; }
}