/*
Theme Name: Roots and Shoots Custom
Author: Custom Code Architecture
Description: Ultra-fast lightweight theme for Roots & Shoots Farm
Version: 1.0
*/
/* CSA PAGE STYLING */
.csa-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.csa-container.narrow { max-width: 750px; }
.csa-hero { text-align: center; padding: 60px 20px; background-color: #f4f7f4; border-radius: 12px; margin-bottom: 40px; }
.csa-badge { background: #2d5a27; color: #fff; padding: 6px 14px; border-radius: 20px; font-weight: bold; font-size: 0.85rem; }
.csa-hero h1 { margin: 15px 0; font-size: 2.5rem; color: #1c3b18; }
.csa-hero-sub { font-size: 1.2rem; color: #555; max-width: 600px; margin: 0 auto 25px; }

/* GRIDS */
.csa-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 50px; }
.csa-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 50px; }

/* CARDS */
.pillar-card { background: #fff; border: 1px solid #e2e8e2; padding: 30px; border-radius: 10px; text-align: center; }
.pillar-icon { font-size: 2.2rem; margin-bottom: 12px; }

.share-card { background: #fff; border: 2px solid #e2e8e2; padding: 35px; border-radius: 12px; position: relative; }
.share-card.featured { border-color: #2d5a27; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.card-badge { position: absolute; top: -14px; right: 20px; background: #2d5a27; color: #fff; padding: 4px 12px; border-radius: 12px; font-size: 0.8rem; font-weight: bold; }
.card-list { list-style: none; padding: 0; margin: 20px 0 30px; }
.card-list li { margin-bottom: 10px; font-size: 0.95rem; color: #444; }

/* BUTTONS */
.csa-btn { display: inline-block; padding: 12px 28px; border-radius: 6px; text-decoration: none; font-weight: bold; text-align: center; }
.csa-btn.primary { background-color: #2d5a27; color: #fff; }
.csa-btn.secondary { background-color: #e2e8e2; color: #2d5a27; }
.csa-btn.block { display: block; width: 100%; box-sizing: border-box; }

/* ACCORDIONS */
.section-title { text-align: center; margin-bottom: 30px; color: #1c3b18; }
.accordion-item { border-bottom: 1px solid #e2e8e2; margin-bottom: 10px; }
.accordion-header { width: 100%; background: none; border: none; padding: 18px 0; text-align: left; font-size: 1.1rem; font-weight: bold; color: #2c2c2c; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-content { display: none; padding-bottom: 18px; color: #666; line-height: 1.6; }
.accordion-item.active .accordion-content { display: block; }