/*
Theme Name: BridgeSound BC Mockup
Theme URI: https://bridgesoundbc.ca
Author: FC Entertainment Inc.
Author URI: https://fcentertainment.ca
Description: Mockup preview of the BridgeSound BC resource hub - a public music-for-screen platform for British Columbia.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bridgesound-bc
*/

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1A1B1F;
  --ink-soft: #3A3D45;
  --paper: #FAFAF8;
  --paper-2: #F0EFE9;
  --paper-3: #E5E3DA;
  --muted: #7A7768;
  --accent: #C8531C;
  --accent-hover: #A8420F;
  --teal: #2E5A5F;
  --teal-soft: #E8F0EF;
  --white: #FFFFFF;
  --border: #D4D1C7;
  --radius: 8px;
  --maxw: 1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Mockup Banner ── */
.mockup-banner {
  background: var(--ink);
  color: #FFF;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.3px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.mockup-banner strong { color: var(--accent); }

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { width: 44px; height: 44px; color: var(--ink); }
.brand-name { font-size: 1.15rem; font-weight: 700; display: block; }
.brand-tag { font-size: 0.75rem; color: var(--muted); display: block; }
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.15s;
}
.nav a:hover, .nav a.active { background: var(--paper-2); color: var(--ink); }

/* ── Hero ── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 20px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #FFF;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.btn:hover { background: var(--accent-hover); color: #FFF; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--paper-2); color: var(--ink); }

/* ── Stats Bar ── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 50px 0;
  overflow: hidden;
}
.stat {
  background: var(--white);
  padding: 24px;
  text-align: center;
}
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.stat-value { font-size: 1rem; font-weight: 600; }

/* ── Section ── */
.section { padding: 60px 0; }
.section-alt { background: var(--white); }
.section-title {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ── Cards Grid ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.15s;
}
.section-alt .card { background: var(--paper); }
.card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.card-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.card-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--paper-2);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 12px;
}
.card-tag.coming { background: var(--teal-soft); color: var(--teal); }

/* ── Placeholder Box ── */
.placeholder {
  background: var(--paper-2);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.placeholder-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ── Directory Profile Cards ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
}
.profile-card h4 { font-size: 1rem; margin-bottom: 2px; }
.profile-card .role { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.profile-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.profile-card .tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  background: var(--paper-2);
  border-radius: 3px;
  color: var(--ink-soft);
}

/* ── Search Bar (mockup) ── */
.search-mock {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  max-width: 600px;
}
.search-mock input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--muted);
}
.search-mock .btn { padding: 12px 24px; }

/* ── Page Header ── */
.page-header {
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.page-header h1 {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.page-header p { color: var(--muted); font-size: 1rem; max-width: 600px; }

/* ── Learning Outcomes ── */
.outcomes { margin-top: 12px; padding-left: 0; list-style: none; }
.outcomes li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0 4px 16px;
  position: relative;
}
.outcomes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── Resource List ── */
.resource-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.resource-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.resource-cat h3 { font-size: 1.05rem; margin-bottom: 12px; }
.resource-cat ul { list-style: none; padding: 0; }
.resource-cat li {
  padding: 8px 0;
  border-bottom: 1px solid var(--paper-2);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.resource-cat li:last-child { border: none; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: #B0ADA0;
  padding: 50px 0 30px;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.site-footer h4 { color: #FFF; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #B0ADA0; }
.site-footer a:hover { color: #FFF; }
.footer-bottom {
  border-top: 1px solid #3A3D45;
  padding-top: 20px;
  text-align: center;
  color: #7A7768;
  font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 50px 0 40px; }
  .nav { gap: 4px; }
  .nav a { padding: 4px 10px; font-size: 0.8rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
}
