/* =====================================================
   Mont Records – New Alternative Music Hub Styles
   v1.0.0 | montrecords.com
   ===================================================== */

/* ── Variables ──────────────────────────────────────── */
:root {
  --mah-bg:          #0a0a0a;
  --mah-surface:     #111111;
  --mah-card-bg:     #161616;
  --mah-card-hover:  #1e1e1e;
  --mah-border:      #2a2a2a;
  --mah-accent:      #c8f53a;   /* electric lime – energy + contrast */
  --mah-accent-dim:  #8fb028;
  --mah-text:        #e8e8e8;
  --mah-muted:       #888888;
  --mah-heading-ff:  'Georgia', 'Times New Roman', serif;
  --mah-body-ff:     'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mah-mono-ff:     'Courier New', monospace;
  --mah-radius:      6px;
  --mah-transition:  0.22s ease;
}

/* ── Base scope ─────────────────────────────────────── */
.mah-hero,
.mah-intro,
.mah-why,
.mah-directory,
.mah-discovery,
.mah-artists,
.mah-global,
.mah-schema,
.mah-subpage-body {
  font-family: var(--mah-body-ff);
  color: var(--mah-text);
  line-height: 1.75;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Hero banner ────────────────────────────────────── */
.mah-hero {
  background: linear-gradient(135deg, #0f1a00 0%, #0a0a0a 60%);
  border-left: 4px solid var(--mah-accent);
  padding: 2.5rem 2.5rem 2rem;
  margin-bottom: 2.5rem;
  border-radius: var(--mah-radius);
}

.mah-hero h2 {
  font-family: var(--mah-heading-ff);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.75rem;
}

.mah-lede {
  font-size: 1.05rem;
  color: #ccc;
  max-width: 800px;
  margin: 0;
}

/* ── Section headings ───────────────────────────────── */
.mah-intro h2,
.mah-why h2,
.mah-directory__heading,
.mah-discovery h2,
.mah-artists h2,
.mah-global h2 {
  font-family: var(--mah-heading-ff);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  border-bottom: 2px solid var(--mah-border);
  padding-bottom: 0.5rem;
  margin: 2.5rem 0 1rem;
}

/* ── Directory intro ────────────────────────────────── */
.mah-directory__intro {
  color: var(--mah-muted);
  margin-bottom: 1.75rem;
  font-size: 0.97rem;
}

/* ── Grid ───────────────────────────────────────────── */
.mah-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* ── Card ───────────────────────────────────────────── */
.mah-card {
  background: var(--mah-card-bg);
  border: 1px solid var(--mah-border);
  border-radius: var(--mah-radius);
  transition: border-color var(--mah-transition), transform var(--mah-transition),
              background var(--mah-transition);
  overflow: hidden;
}

.mah-card:hover {
  background: var(--mah-card-hover);
  border-color: var(--mah-accent);
  transform: translateY(-3px);
}

.mah-card__link {
  display: block;
  padding: 1.4rem 1.4rem 1.2rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.mah-card__icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.mah-card__title {
  font-family: var(--mah-heading-ff);
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.55rem;
  line-height: 1.35;
}

.mah-card__desc {
  font-size: 0.83rem;
  color: var(--mah-muted);
  line-height: 1.5;
  margin: 0 0 0.9rem;
}

.mah-card__cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mah-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mah-mono-ff);
  transition: color var(--mah-transition);
}

.mah-card:hover .mah-card__cta {
  color: #fff;
}

/* ── Artist list ────────────────────────────────────── */
.mah-artist-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.mah-artist-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--mah-border);
  font-size: 0.97rem;
}

.mah-artist-list li:last-child {
  border-bottom: none;
}

.mah-artist-list a {
  color: var(--mah-accent);
  text-decoration: none;
}

.mah-artist-list a:hover {
  text-decoration: underline;
  color: #fff;
}

/* ── Body prose (shared parent + child) ─────────────── */
.mah-intro p,
.mah-discovery p,
.mah-artists p,
.mah-global p {
  margin-bottom: 1.1em;
  color: #d8d8d8;
}

/* ── Subpage content styles ─────────────────────────── */
.entry-content h2 {
  font-family: var(--mah-heading-ff);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: #fff;
  border-left: 3px solid var(--mah-accent);
  padding-left: 0.9rem;
  margin: 2.25rem 0 0.9rem;
}

.entry-content p {
  color: #d4d4d4;
  margin-bottom: 1.1em;
  font-size: 1rem;
  line-height: 1.78;
}

.entry-content a {
  color: var(--mah-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--mah-transition);
}

.entry-content a:hover {
  border-bottom-color: var(--mah-accent);
}

/* ── Breadcrumb helper ──────────────────────────────── */
.mah-breadcrumb {
  font-size: 0.82rem;
  color: var(--mah-muted);
  margin-bottom: 1.5rem;
  font-family: var(--mah-mono-ff);
}

.mah-breadcrumb a {
  color: var(--mah-accent);
  text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 600px) {
  .mah-grid {
    grid-template-columns: 1fr;
  }
  .mah-hero {
    padding: 1.5rem 1.25rem;
  }
}
