/* ============================================================
   LWM Ministry Store — style.css
   Upload to: lworld.org/store/style.css
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:  #1a1a2e;
  --navy2: #0f3460;
  --gold:  #c9a84c;
  --goldd: #b8933a;
  --bg:    #f8f6f1;
  --muted: #666;
}

/* ── Hero ───────────────────────────────────────────────────── */
.s-hero {
  background: linear-gradient(135deg, rgba(26,26,46,.97), rgba(15,52,96,.93));
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}
.s-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.18), transparent 70%);
  pointer-events: none;
}
.gline {
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
  border-radius: 2px;
}
.s-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  font-weight: 800;
  margin-bottom: .7rem;
}
.s-hero p {
  font-size: 1.02rem;
  opacity: .85;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hbtns {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-g {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 800;
  border-radius: 8px;
  padding: .7rem 1.6rem;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}
.btn-g:hover {
  background: var(--goldd);
  transform: translateY(-2px);
}
.btn-ow {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 8px;
  padding: .65rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}
.btn-ow:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Sections ───────────────────────────────────────────────── */
.sec    { padding: 3.5rem 0; }
.sec-w  { background: #fff; }
.sec-bg { background: var(--bg); }
.sec-nv { background: var(--navy); color: #fff; }

/* ── Section headings ───────────────────────────────────────── */
.sh             { margin-bottom: 1.8rem; }
.sh h2          { font-size: 1.55rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.sh.lt h2       { color: #fff; }
.sh p           { color: var(--muted); font-size: .93rem; }
.sh.lt p        { color: rgba(255,255,255,.75); }
.gbar           { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: .7rem; }

/* ── Category grid ──────────────────────────────────────────── */
.cg { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 1.2rem; }
.cc {
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  transition: .2s;
}
.cc:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,.15); }
.cb  { padding: 1.6rem 1.2rem; text-align: center; color: #fff; }
.ci  { font-size: 2.4rem; margin-bottom: .55rem; }
.cn  { font-size: .97rem; font-weight: 800; }
.cs  { font-size: .76rem; opacity: .8; margin-top: .2rem; }

/* ── Music grid ─────────────────────────────────────────────── */
.mg { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.2rem; }
.mt {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.65rem 1.4rem;
  text-align: center;
  transition: .2s;
}
.mt:hover    { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.mti         { font-size: 2.1rem; margin-bottom: .55rem; }
.mtag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  padding: .18rem .65rem;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.mt h3 { font-size: .97rem; font-weight: 800; color: #fff; margin-bottom: .3rem; }
.mt p  { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: .9rem; line-height: 1.5; }
.btn-tl {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  border-radius: 7px;
  padding: .42rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}
.btn-tl:hover { background: var(--gold); color: var(--navy) !important; }

/* ── Mission / impact grid ──────────────────────────────────── */
.mig { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1.4rem; }
.mi       { text-align: center; }
.mi .icon { font-size: 1.9rem; margin-bottom: .45rem; display: block; }
.mi h4    { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: .22rem; }
.mi p     { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── Utility ────────────────────────────────────────────────── */
.va { text-align: center; margin-top: 1.8rem; }
.btn-va {
  display: inline-block;
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: .6rem 1.9rem;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}
.btn-va:hover         { background: var(--navy); color: #fff !important; }
.btn-va.lt            { color: #fff !important; border-color: rgba(255,255,255,.5); }
.btn-va.lt:hover      { background: rgba(255,255,255,.15); border-color: #fff; }
.note-box {
  text-align: center;
  margin-top: 1.8rem;
  padding: 1.1rem 1.4rem;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.note-box p { color: var(--muted); font-size: .85rem; margin: 0; }

/* ============================================================
   CyrusArt Featured Partnership Section
   ============================================================ */
.cyrusart-feature {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 3.5rem 0;
}
.cyrusart-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.cyrusart-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.cyrusart-text { flex: 1; min-width: 280px; }
.cyrusart-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: .75rem;
  color: #fff;
}
.cyrusart-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.3rem;
}
.cyrusart-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}
.cyrusart-highlights li {
  padding: .38rem 0;
  color: rgba(255,255,255,.75);
  font-size: .93rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cyrusart-highlights li:last-child { border-bottom: none; }
.cyrusart-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.btn-ca-primary {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .7rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: .92rem;
  transition: .2s;
  display: inline-block;
}
.btn-ca-primary:hover { background: var(--goldd); transform: translateY(-2px); }
.btn-ca-secondary {
  background: transparent;
  color: #fff !important;
  padding: .68rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid rgba(255,255,255,.4);
  transition: .2s;
  display: inline-block;
}
.btn-ca-secondary:hover { border-color: var(--gold); transform: translateY(-2px); }
.cyrusart-image        { flex: 0 0 360px; max-width: 100%; }
.cyrusart-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  display: block;
}
.cyrusart-image-caption {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: .6rem;
  font-style: italic;
}

@media (max-width: 720px) {
  .cyrusart-content         { flex-direction: column-reverse; }
  .cyrusart-image           { flex: 1 1 100%; }
}

/* ============================================================
   Connect with Doug — Store Teaser Section
   ============================================================ */
.ca-connect-teaser {
  background: var(--bg);
  border-top: 3px solid var(--gold);
  padding: 2.8rem 0;
}
.ca-connect-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ca-connect-text { flex: 1; min-width: 260px; }
.ca-connect-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}
.ca-connect-text p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin: 0;
}
.ca-connect-action {
  text-align: center;
  flex-shrink: 0;
}
.btn-ca-connect {
  display: inline-block;
  background: var(--navy);
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-ca-connect:hover { background: var(--navy2); transform: translateY(-2px); }
.ca-connect-note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .55rem;
  margin-bottom: 0;
  font-style: italic;
}

@media (max-width: 620px) {
  .ca-connect-inner  { flex-direction: column; text-align: center; }
  .ca-connect-action { width: 100%; }
  .btn-ca-connect    { width: 100%; }
}

