/* Shine Bright Collective — static rebuild */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --teal: #009c97;
  --teal-light: #7ec9c5;
  --navy: #3c3950;
  --grey: #676e78;
  --grey-light: #aab5bc;
  --cream: #f8f6f2;
  --line: #e8edf0;
  --coral: #f0525e;
  --coral-dark: #d43e4a;
  --plum: #814672;
  --indigo: #4164af;
  --footer-dark: #2e2a3a;
  --green: #34a949;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--grey);
  background: #fff;
  line-height: 1.75;
  letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 16px;
}

h1 { font-size: 46px; letter-spacing: 1px; }
h2 { font-size: 34px; letter-spacing: 0.5px; }
h3 { font-size: 26px; }
h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
}
h5 { font-size: 20px; font-weight: 400; }
h6 { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; color: var(--grey); }

p { margin: 0 0 20px; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }
ul { padding-left: 22px; }
li { margin-bottom: 8px; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* Header */
header.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: 40px; border-radius: 50%; }
.brand span {
  font-family: 'Source Serif 4', serif;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
nav.main-nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
nav.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
nav.main-nav a:hover { color: var(--teal); }
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  min-width: 190px;
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 18px;
  text-transform: none;
  letter-spacing: 0.2px;
  font-weight: 400;
  font-size: 14px;
}
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 25px;
  background: var(--coral);
  color: #fff !important;
  border: 1px solid var(--coral);
}
.btn:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff !important; }
.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff !important; }
.btn-small { padding: 9px 20px; font-size: 12px; }
.btn-teal { background: var(--teal); border-color: var(--teal); }
.btn-teal:hover { background: var(--navy); border-color: var(--navy); }
/* translucent variant for buttons sitting on top of a photo (hero) */
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.32); border-color: #fff; color: #fff !important; }

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 130px 24px;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,28,40,0.18), rgba(30,28,40,0.4));
}
.hero .wrap { position: relative; z-index: 1; }
.hero h4 { color: #fff; opacity: 0.85; }
.hero h1 { color: #fff; font-size: 58px; margin-bottom: 20px; }
.hero p.lead { color: #f1f2f4; font-size: 19px; max-width: 620px; margin: 0 auto 32px; }

.section { padding: 80px 24px; }
.section.alt { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h4 { justify-content: center; }
.section-head p { font-size: 18px; color: var(--grey); }

/* colored full-width blocks matching the original site */
.section-plum { background: var(--plum); }
.section-plum h1, .section-plum h2, .section-plum h3, .section-plum h4, .section-plum h5, .section-plum h6 { color: #fff; }
.section-plum p, .section-plum .section-head p { color: #f1f2f4; }

.section-indigo { background: var(--indigo); }
.section-indigo h1, .section-indigo h2, .section-indigo h3, .section-indigo h4, .section-indigo h5, .section-indigo h6 { color: #fff; }
.section-indigo p, .section-indigo .section-head p { color: #e7eaf5; }
.section-indigo .post-card { border-bottom-color: rgba(255,255,255,0.2); }
.section-indigo .post-card h3 a { color: #fff !important; }
.section-indigo .post-card p { color: #e7eaf5; }
.section-indigo .post-card a:not(.btn) { color: #cfd8f0; }
.section-indigo .post-date { color: rgba(255,255,255,0.65); }

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.card {
  border: 1px solid var(--line);
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}
.card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.07); }
.card img { aspect-ratio: 1/1; object-fit: cover; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 6px; }
.price { color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.tag-new {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 3px;
  padding: 2px 7px;
  margin-bottom: 10px;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* Levers / numbered list */
.levers { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.lever-num { font-size: 44px; font-weight: 700; color: rgba(0,156,151,0.15); font-family: 'Source Serif 4', serif; margin-bottom: -6px; }
.lever { border-bottom: 1px solid rgba(0,156,151,0.3); padding-bottom: 10px; margin-bottom: 12px; }

/* Pricing cards */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.price-card { border: 1px solid var(--line); padding: 32px 24px; text-align: center; }
.price-card h5 { margin-bottom: 4px; }
.price-card .amount { color: var(--teal); font-weight: 600; font-size: 15px; letter-spacing: 0.5px; margin-bottom: 16px; }

/* FAQ accordion */
details.faq {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
details.faq summary {
  cursor: pointer;
  font-family: 'Source Serif 4', serif;
  font-size: 19px;
  color: var(--navy);
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; color: var(--teal); font-size: 22px; }
details.faq[open] summary::after { content: "\2212"; }
details.faq p { margin-top: 14px; }

/* Blog */
.post-list { display: grid; gap: 40px; }
.post-card { border-bottom: 1px solid var(--line); padding-bottom: 32px; }
.post-date { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; }
article.post { max-width: 700px; margin: 0 auto; }
article.post h1 { margin-bottom: 8px; }
article.post .post-date { margin-bottom: 32px; }

blockquote.pullquote {
  text-align: center;
  color: #fff;
  padding: 90px 24px;
  background: var(--navy);
  position: relative;
}
blockquote.pullquote p.quote { font-family: 'Source Serif 4', serif; font-size: 26px; max-width: 700px; margin: 0 auto 16px; position: relative; z-index: 1; }
blockquote.pullquote cite { font-size: 13px; letter-spacing: 1px; color: var(--teal-light); font-style: normal; position: relative; z-index: 1; }
blockquote.pullquote h3 { position: relative; z-index: 1; }

blockquote.pullquote.plum { background: var(--plum); }
blockquote.pullquote.green { background: var(--green); }
blockquote.pullquote.green cite { color: rgba(255,255,255,0.85); }

/* photo-backed quote (e.g. the Brené Brown block) */
blockquote.pullquote.photo {
  background-size: cover;
  background-position: center;
}
blockquote.pullquote.photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,30,0.55), rgba(20,20,30,0.72));
}
blockquote.pullquote.photo cite { color: #fff; }

/* Footer */
footer.site-footer {
  background: var(--footer-dark);
  color: #cfd3e0;
  padding: 56px 24px 28px;
  font-size: 14px;
}
footer.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
footer.site-footer a { color: #cfd3e0; }
footer.site-footer a:hover { color: #fff; }
footer.site-footer h6 { color: #fff; margin-bottom: 14px; letter-spacing: 1.5px; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: #9ba0b3;
}

/* Buy box on product pages */
.buy-box { border: 1px solid var(--line); padding: 28px; }
.buy-box .price { font-size: 22px; }
.sku { font-size: 12px; color: var(--grey-light); margin-top: 16px; }

/* Fav page (Products I Love) is self-styled inline; reset a bit here */
.fav-page ul.fav-list { padding-left: 0; }

@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .hero h1 { font-size: 40px; }
}
