/* ============================
   Lady T. Michelle Ministries
   Shared Stylesheet (styles.css)
   Palette: Ivory/Champagne, Soft Gold, Blush/Rose
   ============================ */

:root{
  --bg: #faf7f2;
  --ink: #333333;
  --ink-dark: #2f2b28;

  --champagne: #d7c2a8;   /* header */
  --ivory: #f1e6d6;       /* navbar */
  --gold: #b48a60;        /* buttons / accents */
  --gold-dark: #6f472c;   /* hover */
  --shadow: rgba(0,0,0,.10);
  --shadow-soft: rgba(0,0,0,.08);
  --radius: 12px;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  font-family: "Georgia", serif;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

/* ---------- NAVBAR ---------- */
.navbar{
  background: var(--ivory);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}

.navbar a{
  margin: 6px 8px;
  text-decoration: none;
  font-weight: bold;
  color: var(--ink-dark);
  font-size: 1rem;
}

.navbar a:hover{
  text-decoration: underline;
}

.nav-brand img{
  height: 32px;
  vertical-align: middle;
  margin-right: 12px;
}

/* ---------- HEADER ---------- */
header{
  background: var(--champagne);
  padding: 50px 20px;
  text-align: center;
  color: var(--ink-dark);
}

header h1{
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: 1.5px;
}

/* Ministry Logo */
.site-logo{
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

.tagline{
  font-size: 1.2rem;
  margin: 14px auto 8px;
  font-style: italic;
  max-width: 780px;
  line-height: 1.5;
}

.scripture{
  font-size: 1rem;
  margin: 0 auto;
  max-width: 820px;
  opacity: .95;
  line-height: 1.6;
}

/* ---------- BANNERS / IMAGES ---------- */
.banner{
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.launch-img{
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px 0 18px;
}

.product-img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,.10);
}

/* ---------- SECTIONS ---------- */
.section{
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

.section h2{
  margin-top: 0;
}

/* ---------- CARDS ---------- */
.card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 10px var(--shadow-soft);
  margin-bottom: 18px;
}

.product-card{
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 10px var(--shadow);
  text-align: center;
  margin-bottom: 18px;
}

.product-card a img:hover{
  transform: scale(1.03);
  transition: transform 0.2s ease;
}

/* ---------- BUTTONS ---------- */
a.buy-btn, .btn{
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--gold);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

a.buy-btn:hover, .btn:hover{
  background: #a97d56;
}

.shop-now-btn{
  display: inline-block;
  padding: 14px 34px;
  background: #8b5e3c;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

.shop-now-btn:hover{
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
}

/* ---------- GRID (optional) ---------- */
.products{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ---------- FORMS / IFRAME ---------- */
iframe{
  width: 100%;
  border: 0;
}

/* ---------- FOOTER ---------- */
footer{
  text-align: center;
  padding: 30px 10px;
  background: var(--ink-dark);
  color: #ffffff;
  margin-top: 40px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px){
  header{ padding: 40px 16px; }
  header h1{ font-size: 2.1rem; letter-spacing: 1px; }
  .site-logo{ max-width: 230px; margin-bottom: 16px; }
  .tagline{ font-size: 1.05rem; max-width: 95%; }
  .scripture{ font-size: .95rem; max-width: 95%; }
  img{ display: block; }
}

@media (min-width: 900px){
  .banner{
    border-radius: 14px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
