/* ---------------------------
GLOBAL STYLING (APPLIES TO ALL PAGES)
---------------------------- */

body {
    margin: 0;
    font-family: Georgia, serif;
    background-color: #f7efe3;
    color: #6b2b1a;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #8a3b26;
    font-weight: bold;
}


/* ---------------------------
HERO BANNER
---------------------------- */

.hero-banner {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


/* ---------------------------
TOP NAVIGATION
---------------------------- */

.top-nav {
    background-color: #f1e4d0;
    padding: 14px 0;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 3px solid #d4b79a;
}

.top-nav a {
    margin: 0 15px;
    color: #8a3b26;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.top-nav a:hover,
.top-nav a.active {
    text-decoration: underline;
}


/* ---------------------------
INTRO SECTION
---------------------------- */

.intro {
    text-align: center;
    padding: 20px;
}

.brand-icon {
    width: 140px;
    margin: 0 auto 10px;
    display: block;

    /* Gentle glow pulse */
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0% { filter: drop-shadow(0 0 2px #ffdf94); }
    50% { filter: drop-shadow(0 0 12px #ffd777); }
    100% { filter: drop-shadow(0 0 2px #ffdf94); }
}

.tagline {
    font-style: italic;
    font-size: 1.25rem;
    margin-top: -10px;
    margin-bottom: 10px;
}

.intro-text {
    max-width: 700px;
    margin: 20px auto;
    font-size: 1.12rem;
}


/* ---------------------------
BUTTONS
---------------------------- */

.button {
    display: inline-block;
    padding: 13px 28px;
    margin: 10px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
}

.main-btn {
    background-color: #8a3b26;
    color: #fff;
}

.main-btn:hover {
    background-color: #6f2f1f;
}

.secondary-btn {
    background-color: #d9c1a8;
    color: #6b2b1a;
}

.secondary-btn:hover {
    background-color: #c7af97;
}


/* ---------------------------
PAGE HERO (About, Contact, Scripture pages)
---------------------------- */

.page-hero {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 2.1rem;
}

.page-hero p {
    font-size: 1.15rem;
    font-style: italic;
    color: #8a3b26;
}


/* ---------------------------
ABOUT PAGE
---------------------------- */

.about-content {
    max-width: 850px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 1.1rem;
}


/* ---------------------------
CONTACT PAGE
---------------------------- */

.contact-content {
    max-width: 700px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-box {
    background: #f1e4d0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-box a {
    color: #7a301c;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 20px;
    font-style: italic;
}


/* ---------------------------
SCRIPTURE PAGE
---------------------------- */

.scripture-box {
    max-width: 700px;
    margin: 30px auto;
    background: #f1e4d0;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.scripture-text {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 12px;
}

.reference {
    font-size: 1.1rem;
    color: #8a3b26;
}

.scripture-note {
    margin-top: 20px;
    font-style: italic;
}


/* ---------------------------
SHOP PAGE - CATEGORIES
---------------------------- */

.categories {
    text-align: center;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    display: inline-block;
    background: #ead9c4;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 5px;
    font-weight: bold;
}


/* ---------------------------
PRODUCT GRID
---------------------------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: #f1e4d0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 10px;
}

.product-button {
    display: inline-block;
    background: #8a3b26;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
}

.product-button:hover {
    background: #6f2f1f;
}


/* ---------------------------
FOOTER
---------------------------- */

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    background-color: #ead9c4;
    font-size: 0.95rem;
    color: #6b2b1a;
}


/* ---------------------------
SCRIPTURE NUGGETS PAGE
---------------------------- */
.nugget-intro {
    max-width: 850px;
    margin: 0 auto 25px;
    padding: 0 20px;
    font-size: 1.05rem;
}
.nugget-feature {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 20px;
}
.nugget-feature-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 20px;
}
@media (max-width: 800px) {
    .nugget-feature-inner {
        grid-template-columns: 1fr;
    }
}
.video-wrapper video {
    width: 100%;
    border-radius: 12px;
}
.video-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 6px;
}
.nugget-section {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 20px;
}
.nugget-two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.nugget-list {
    list-style: disc;
    padding-left: 20px;
}
.nugget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.nugget-card {
    background: #f1e4d0;
    border-radius: 10px;
    padding: 18px;
}
.nugget-card h3 {
    margin-top: 0;
}
.nugget-shop {
    text-align: center;
}


/* Anchor & Arrow enhancements */
.product-card,
.payment-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover,
.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.category-pills li {
    display: inline-block;
    margin: 4px 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: #f0e0d2;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.category-pills li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    background-color: #fbe9dd;
}

.qr-card.qr-small .qr-img {
    max-width: 90px;
    height: auto;
}

.qr-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.qr-strip img {
    max-width: 80px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.price-line {
    font-weight: bold;
    margin-top: 0.5rem;
}

.video-mockup {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    margin-bottom: 0.75rem;
}

.video-mockup-img {
    width: 100%;
    display: block;
}

.video-mockup-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.65);
    pointer-events: none;
}


/* Layout for payment options on Shop page */
.payment-options {
    margin: 40px auto 50px;
    max-width: 960px;
    padding: 0 16px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 1rem;
}

.shop-blessing-tagline {
    font-size: 0.95rem;
    margin-top: 0.35rem;
    font-style: italic;
}


/* v12 tweaks: shop teasers + alignment + seasonal CTA */
.season-cta{
  max-width:960px;
  margin: 10px auto 24px;
  padding: 0 16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-start;
}

.payment-options, .payment-card{
  text-align:left;
}

.payment-card h3, .payment-card p{
  text-align:left;
}

.video-mockup{
  background:#000;
}

.video-teaser{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.98;
}

.video-mockup-img{
  opacity:0;
}


/* v13: Payment section alignment */
.payment-centered h2,
.payment-centered .shop-blessing-tagline {
    text-align: center;
}
.payment-centered .payment-card {
    text-align: center;
}
.payment-centered .payment-card p {
    text-align: center;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}



/* v14: Center Ways to Shop section */
.payment-centered,
.payment-centered * {
  box-sizing: border-box;
}

.payment-centered {
  text-align: center !important;
}

.payment-centered h2,
.payment-centered .shop-blessing-tagline,
.payment-centered .payment-card h3 {
  text-align: center !important;
}

.payment-centered .payment-card p {
  text-align: center !important;
  max-width: 52ch;
  margin-left: auto !important;
  margin-right: auto !important;
}

.payment-centered .payment-grid {
  justify-items: center;
}

.payment-centered .payment-card {
  width: 100%;
  max-width: 520px;
}



/* ===== v16: Force-center "Ways to Shop" section ===== */
.payment-options,
.payment-options *{
  text-align: center !important;
}
.payment-options .payment-inner,
.payment-options .payment-grid,
.payment-options .payment-card{
  margin-left: auto !important;
  margin-right: auto !important;
}
.payment-options .payment-card p{
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 900px;
}

/* ===== v17: Category highlighting controls ===== */
.category-pills li.season-neutral {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.15);
}
.category-pills li.season-neutral:hover {
  transform: none;
  box-shadow: none;
  background-color: transparent;
}

/* ===== v17: Force-center Ways to Shop (stronger) ===== */
.payment-options {
  text-align: center !important;
}
.payment-options .payment-grid {
  justify-items: center !important;
}
.payment-options .payment-card,
.payment-options .payment-card h3,
.payment-options .payment-card p {
  text-align: center !important;
}
.payment-options .payment-card p {
  max-width: 52ch;
}

/* ===== v17: Force-center Ways to Shop (extra override) ===== */
.payment-options,
.payment-options .payment-grid,
.payment-options .payment-card,
.payment-options h2,
.payment-options h3,
.payment-options p {
  text-align: center !important;
}
.payment-options .payment-grid {
  justify-items: center !important;
}


/* v18: Season highlighting rules */
.season-highlight {
  background: #ead9c4;
  border: 2px solid rgba(0,0,0,0.12);
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  transform: translateY(-1px);
}
.season-highlight a { display: inline-block; }

.season-neutral {
  background: transparent;
  box-shadow: none;
  border: none;
  font-weight: normal;
  opacity: 0.95;
}
.season-neutral:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}



/* ==== v19 FIX: FORCE CENTER for Ways to Shop section ==== */
.ways-to-shop, .ways-to-shop * { text-align: center !important; }
.ways-to-shop .content-wrap, .ways-to-shop .inner, .ways-to-shop .container {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 950px;
}
.ways-to-shop p, .ways-to-shop h1, .ways-to-shop h2, .ways-to-shop h3 {
  margin-left: auto !important;
  margin-right: auto !important;
}
/* If a parent forces left-align on paragraphs, override here */
.ways-to-shop p { text-align: center !important; }

/* ==== v19 FIX: CATEGORY highlight logic ==== */
.shop-categories a { text-decoration: none; }
.shop-categories a.is-active { 
  font-weight: 700;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}
.shop-categories a:not(.is-active) { font-weight: 500; border-bottom: none; }


/* ==== v20 FIX: HARD CENTER for Ways to Shop ==== */
.ways-to-shop, .ways-to-shop-inner { text-align: center !important; }
.ways-to-shop-inner{
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 14px !important;
}
.ways-to-shop .product-card, 
.ways-to-shop .product-card *{
  text-align: center !important;
}
.ways-to-shop p, .ways-to-shop h1, .ways-to-shop h2, .ways-to-shop h3{
  margin-left: auto !important;
  margin-right: auto !important;
}
.ways-to-shop .product-card{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ==== v20 FIX: Category highlighting — ONLY .is-active ==== */
.shop-categories a{
  border-bottom: none !important;
  font-weight: 500 !important;
}
.shop-categories a.is-active{
  font-weight: 800 !important;
  border-bottom: 3px solid currentColor !important;
  padding-bottom: 2px !important;
}



/* ===== v21 FORCE-CENTER: Ways to Shop (Shop page) ===== */
#ways-to-shop, .ways-to-shop, section.ways-to-shop, .payment-options, .ways-shop {
  text-align: center !important;
}
#ways-to-shop *, .ways-to-shop *, section.ways-to-shop *, .payment-options *, .ways-shop * {
  text-align: center !important;
}
#ways-to-shop .content, #ways-to-shop .container, #ways-to-shop .inner,
.ways-to-shop .content, .ways-to-shop .container, .ways-to-shop .inner,
.payment-options .content, .payment-options .container, .payment-options .inner {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 980px !important;
}
#ways-to-shop p, .ways-to-shop p, .payment-options p {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 900px !important;
}
