/* ============================================
   Productive Sustainable Communities
   Improved Shared Styles
   ============================================ */

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #F8F1E9;
    color: #333333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 600;
    color: #3F2A1E;
}

/* Navigation */
nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.warm-button {
    background-color: #8B5E3C;
    color: white;
    padding: 12px 28px;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.warm-button:hover {
    background-color: #6B4429;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.3);
}

/* Cards */
.card, .bg-white {
    background-color: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px -8px rgb(0 0 0 / 0.1);
}

/* Section improvements */
section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Footer */
footer {
    background-color: #F8F1E9;
    border-top: 1px solid #E5D9CC;
}