/*
Theme Name: MCBA Theme
Theme URI: https://minoritycannabis.org
Author: BakedBot AI
Description: Official theme for the Minority Cannabis Business Association
Version: 1.0
Text Domain: mcba-theme
*/

:root {
  --mcba-teal: #1a8a8a;
  --mcba-teal-dark: #146a6a;
  --mcba-nav: #0d1117;
  --mcba-green: #1e4d2b;
  --mcba-gold: #f5c518;
  --mcba-light: #f5f5f5;
  --mcba-text: #333333;
  --mcba-muted: #666666;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: var(--mcba-text);
  line-height: 1.7;
}

a { color: var(--mcba-teal); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--mcba-teal-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}
.btn:hover { text-decoration: none; }
.btn-teal { background: var(--mcba-teal); color: white; }
.btn-teal:hover { background: var(--mcba-teal-dark); color: white; }
.btn-outline-white { border: 2px solid white; color: white; background: transparent; }
.btn-outline-white:hover { background: white; color: var(--mcba-teal); }

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
  background: var(--mcba-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 16px;
}
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 46px; height: 46px;
  background: var(--mcba-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px; color: white;
  font-family: Georgia, serif;
  letter-spacing: -1px;
}
.logo-text {
  color: white; font-weight: 700; font-size: 16px;
  letter-spacing: 2px; text-transform: uppercase;
}
.logo-text span { display: block; font-size: 10px; font-weight: 400; letter-spacing: 1px; color: rgba(255,255,255,0.6); }

.site-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.site-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 8px 9px;
  display: block; transition: color 0.2s;
}
.site-nav ul li a:hover { color: var(--mcba-teal); text-decoration: none; }
.nav-cta a {
  background: var(--mcba-teal) !important; color: white !important;
  padding: 8px 16px !important; border-radius: 4px;
}
.nav-cta a:hover { background: var(--mcba-teal-dark) !important; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #0a2020 0%, #1a3535 40%, #0d2020 100%);
  min-height: 500px; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 80px 24px;
  max-width: 1200px; margin: 0 auto;
}
.hero-eyebrow {
  color: var(--mcba-teal); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
}
.hero h1 {
  font-size: 58px; font-weight: 900; color: white;
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 24px; letter-spacing: 2px;
  max-width: 700px;
}
.hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 560px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── WHAT IS MCBA ───────────────────────────────── */
.what-is {
  padding: 88px 0; background: white;
}
.what-is-inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 64px;
  align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.what-is h2 { color: var(--mcba-teal); font-size: 34px; font-weight: 800; margin-bottom: 20px; }
.what-is p { color: #555; margin-bottom: 16px; line-height: 1.85; }
.what-is-img {
  background: linear-gradient(135deg, var(--mcba-teal) 0%, #0f5555 100%);
  height: 380px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 15px; text-align: center; padding: 24px;
}

/* ─── MEMBERSHIP ─────────────────────────────────── */
.membership { padding: 88px 0; background: var(--mcba-light); text-align: center; }
.membership h2 { font-size: 36px; font-weight: 800; color: #1a1a1a; margin-bottom: 12px; }
.membership .lead { color: var(--mcba-muted); font-size: 17px; max-width: 560px; margin: 0 auto 32px; font-style: italic; }
.benefits-card {
  max-width: 640px; margin: 32px auto 0;
  background: white; padding: 36px 44px;
  border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: left;
}
.benefits-card h3 {
  color: var(--mcba-teal); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.benefits-card ul { list-style: none; }
.benefits-card ul li {
  padding: 8px 0 8px 28px; position: relative;
  color: #555; font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.benefits-card ul li:last-child { border-bottom: none; }
.benefits-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--mcba-teal); font-weight: 700; }

/* ─── QUOTE ──────────────────────────────────────── */
.quote-band {
  background: var(--mcba-green); padding: 72px 24px; text-align: center;
}
.quote-band blockquote {
  max-width: 920px; margin: 0 auto;
  font-size: 20px; font-weight: 800; color: var(--mcba-gold);
  text-transform: uppercase; line-height: 1.5; letter-spacing: 0.5px;
  quotes: none;
}
.quote-band cite {
  display: block; margin-top: 24px;
  color: rgba(255,255,255,0.75); font-size: 13px;
  font-style: normal; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
}

/* ─── BOARD ──────────────────────────────────────── */
.board { padding: 88px 0; background: white; text-align: center; }
.board h2 { font-size: 32px; font-weight: 800; color: #1a1a1a; margin-bottom: 12px; }
.board .sub { color: var(--mcba-muted); font-size: 15px; margin-bottom: 48px; }
.board-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.board-card { text-align: center; }
.board-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--mcba-teal); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 32px; font-weight: 700;
}
.board-card h3 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.board-card p { font-size: 13px; color: var(--mcba-muted); }

/* ─── FOCUS AREAS ────────────────────────────────── */
.focus { padding: 88px 0; background: #f9f9f9; text-align: center; }
.section-header { margin-bottom: 0; }
.section-header h2 { font-size: 32px; font-weight: 800; color: #1a1a1a; }
.section-header p { color: var(--mcba-muted); margin-top: 10px; font-size: 15px; font-style: italic; }
.focus-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; max-width: 1200px; margin: 48px auto 0; padding: 0 24px;
}
.focus-card {
  background: white; padding: 44px 24px;
  border-radius: 10px; text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.focus-card:hover { transform: translateY(-6px); box-shadow: 0 10px 36px rgba(0,0,0,0.1); }
.focus-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--mcba-teal); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 30px;
}
.focus-card h3 {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: #1a1a1a; margin-bottom: 12px;
}
.focus-card p { color: #888; font-size: 14px; line-height: 1.7; }

/* ─── NEWS ───────────────────────────────────────── */
.news { padding: 88px 0; background: white; text-align: center; }
.news h2 { font-size: 32px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; }
.news .sub { color: var(--mcba-muted); font-size: 15px; margin-bottom: 48px; font-style: italic; }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.news-card {
  background: #f9f9f9; border-radius: 10px; overflow: hidden;
  text-align: left; transition: box-shadow 0.25s;
}
.news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.news-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--mcba-teal), var(--mcba-green));
}
.news-card-body { padding: 24px; }
.news-date { font-size: 12px; color: var(--mcba-muted); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.news-card h3 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; line-height: 1.45; }
.news-card a.read-more { color: var(--mcba-teal); font-size: 13px; font-weight: 700; }
.news-cta { margin-top: 40px; }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--mcba-nav); color: rgba(255,255,255,0.65);
  padding: 64px 24px 28px;
}
.footer-newsletter {
  text-align: center; max-width: 480px; margin: 0 auto 48px;
}
.footer-newsletter h3 { color: white; font-size: 19px; margin-bottom: 16px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row input {
  flex: 1; padding: 12px 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: white; border-radius: 4px; font-size: 14px;
}
.newsletter-row input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-row button {
  padding: 12px 20px; background: var(--mcba-teal);
  color: white; border: none; border-radius: 4px;
  font-weight: 700; font-size: 13px; cursor: pointer;
}
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 28px; }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-social a {
  color: rgba(255,255,255,0.5); width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s;
}
.footer-social a:hover {
  color: white; background: var(--mcba-teal); border-color: var(--mcba-teal);
  text-decoration: none;
}
.footer-copy { text-align: center; font-size: 13px; }

/* ─── INNER PAGES ────────────────────────────────── */
.page-hero {
  background: var(--mcba-nav); padding: 56px 24px;
  text-align: center; color: white;
}
.page-hero h1 { font-size: 36px; font-weight: 800; }
.page-content { max-width: 860px; margin: 64px auto; padding: 0 24px; }
.page-content h2 { color: var(--mcba-teal); margin: 32px 0 16px; font-size: 26px; }
.page-content p { margin-bottom: 16px; line-height: 1.85; }
.page-content ul { padding-left: 24px; margin-bottom: 16px; }
.page-content ul li { margin-bottom: 8px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .what-is-inner { grid-template-columns: 1fr; }
  .what-is-img { height: 260px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .focus-grid, .news-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .header-inner { flex-wrap: wrap; }
}
