
/*
Theme Name: West End Village
Theme URI: https://west-end-village.local
Author: West End Village
Description: A custom WordPress theme for West End Village with pages for The Shack, Food Trucks, and the Bamboo Garden.
Version: 1.0.0
Text Domain: west-end-village
*/

/* Basic reset */
* { box-sizing: border-box; }
body { margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; background:#f4efe7; color:#2b2b2b; }
img { max-width: 100%; height: auto; }
a { color: #245a38; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Color palette */
:root {
  --wev-green: #2f6b45;
  --wev-bamboo: #3f7d52;
  --wev-amber: #9c6b3d;
  --wev-cream: #f4efe7;
  --wev-brown: #3a2c20;
}

.header { background: var(--wev-cream); border-bottom: 1px solid #e0d9cf; }
.header .inner { max-width: 1200px; margin: 0 auto; padding: 16px; display:flex; align-items:center; justify-content:space-between; }
.site-title { font-weight: 700; letter-spacing: 0.02em; }
.nav a { margin: 0 12px; font-weight: 600; }

.hero { position: relative; padding: 72px 24px; background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.20)), url("assets/images/hero-bamboo.jpg"); background-size: cover; color: #fff; }
.hero .wrap { max-width: 1100px; margin:0 auto; }
.hero h1 { font-size: 56px; line-height: 1.05; margin:0 0 12px; }
.hero p { font-size: 20px; max-width: 800px; }
.cta-row { margin-top: 20px; display:flex; gap:16px; }
.btn { display:inline-block; padding: 12px 18px; border-radius: 8px; font-weight:700; }
.btn.primary { background: var(--wev-green); color:#fff; }
.btn.secondary { background: #ffffff; color: var(--wev-bamboo); }

.grid { max-width: 1100px; margin: 40px auto; padding: 0 24px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background:#fff; border:1px solid #e8e1d7; border-radius: 12px; overflow:hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.card .body { padding: 16px; }
.card h3 { margin: 0 0 8px; }

.section { max-width: 1100px; margin: 40px auto; padding: 0 24px; }
.section h2 { margin-bottom: 12px; }
.section .columns { display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.footer { background: #fff; border-top:1px solid #e0d9cf; margin-top:40px; }
.footer .inner { max-width: 1100px; margin:0 auto; padding: 24px; display:flex; justify-content:space-between; align-items:center; }
.today-lineup { list-style:none; padding:0; display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.today-lineup .lineup-item { background:#fff; border:1px solid #e8e1d7; border-radius:12px; padding:12px; }

/* Page-specific helpers */
.page-title { font-size: 44px; margin: 24px 0; }
.hours-box { background:#fff; padding:16px; border:1px solid #e8e1d7; border-radius:12px; }
