/* ============================================================
   DDD Journaling — Stylesheet
   Brand: Warm Plum + Gold + Blush — Faith-Filled & Vibrant
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:       #5C2D6E;
  --plum-dark:  #3D1A4A;
  --plum-light: #7B3F8C;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --blush:      #F7E8F0;
  --rose:       #E8A0C0;
  --cream:      #FDF8F5;
  --charcoal:   #2C2C2C;
  --mid-gray:   #6B6B6B;
  --white:      #FFFFFF;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(92,45,110,0.12);
  --shadow-lg:  0 8px 40px rgba(92,45,110,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--plum-dark);
}

a { color: var(--plum); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--blush); }
.eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--plum-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--plum-dark);
  transform: translateY(-2px);
}
.btn-plum {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn-plum:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,45,110,0.35);
}

/* ── Navigation ── */
.ddd-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--plum-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.ddd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.ddd-nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.ddd-nav-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.ddd-nav-brand .brand-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ddd-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.ddd-nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.ddd-nav-links a:hover { color: var(--gold); }
.ddd-nav-cta {
  background: var(--gold);
  color: var(--plum-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700 !important;
}
.ddd-nav-cta:hover { background: var(--gold-light) !important; color: var(--plum-dark) !important; }
.ddd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ddd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.ddd-hero {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, #8B4FA0 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ddd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 65%);
}
.ddd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.ddd-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ddd-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.ddd-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.ddd-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.ddd-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.ddd-hero-image-wrap {
  position: relative;
}
.ddd-hero-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  margin: 0 auto;
}
.ddd-hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--gold);
  color: var(--plum-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.3;
}

/* ── Scripture Banner ── */
.ddd-scripture {
  background: var(--plum);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.ddd-scripture blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 0.75rem;
  line-height: 1.5;
}
.ddd-scripture cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Features / Pillars ── */
.ddd-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ddd-pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ddd-pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ddd-pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.ddd-pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--plum);
}
.ddd-pillar-card p { font-size: 0.9rem; color: var(--mid-gray); }

/* ── Product Grid ── */
.ddd-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.ddd-product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ddd-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ddd-product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--blush);
}
.ddd-product-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.ddd-product-body { padding: 1.5rem; }
.ddd-product-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.ddd-product-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--plum-dark); }
.ddd-product-body p { font-size: 0.88rem; color: var(--mid-gray); margin-bottom: 1rem; }

/* ── Journal Showcase ── */
.ddd-showcase {
  background: var(--plum-dark);
  padding: 5rem 0;
  text-align: center;
}
.ddd-showcase h2 { color: var(--white); margin-bottom: 0.75rem; }
.ddd-showcase .eyebrow { color: var(--gold); }
.ddd-showcase p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2.5rem; }
.ddd-showcase-img {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius);
  box-shadow: 0 12px 50px rgba(0,0,0,0.4);
  margin: 0 auto;
}

/* ── About Strip ── */
.ddd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ddd-about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}
.ddd-about-content h2 { margin-bottom: 1rem; }
.ddd-about-content p { color: var(--mid-gray); margin-bottom: 1rem; }

/* ── Testimonials ── */
.ddd-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.ddd-testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  position: relative;
}
.ddd-testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--rose);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
}
.ddd-testimonial-card p { font-style: italic; color: var(--mid-gray); margin-bottom: 1rem; padding-top: 1.5rem; }
.ddd-testimonial-author { font-weight: 700; color: var(--plum); font-size: 0.9rem; }
.ddd-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.5rem; }

/* ── CTA Banner ── */
.ddd-cta-banner {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.ddd-cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.ddd-cta-banner p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ── Page Hero (inner pages) ── */
.ddd-page-hero {
  background: linear-gradient(135deg, var(--plum-dark), var(--plum));
  padding: 4rem 1.5rem;
  text-align: center;
}
.ddd-page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.ddd-page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.ddd-breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.ddd-breadcrumb a { color: var(--gold); }

/* ── Contact Form ── */
.ddd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.ddd-contact-info h3 { color: var(--plum); margin-bottom: 1rem; }
.ddd-contact-info p { color: var(--mid-gray); margin-bottom: 1.5rem; }
.ddd-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.ddd-contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ddd-contact-detail-text strong { display: block; color: var(--plum-dark); font-size: 0.85rem; }
.ddd-contact-detail-text span { color: var(--mid-gray); font-size: 0.9rem; }
.ddd-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.ddd-form-card h3 { color: var(--plum); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #DDD;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(92,45,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.ddd-sms-panel {
  background: var(--blush);
  border: 1.5px solid var(--rose);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.ddd-sms-panel h4 { color: var(--plum); font-size: 0.95rem; margin-bottom: 0.75rem; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--plum);
}
.checkbox-group label {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.5;
  cursor: pointer;
}
.ddd-sms-disclaimer {
  font-size: 0.75rem;
  color: var(--mid-gray);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--rose);
}

/* ── Shop ── */
.ddd-shop-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.ddd-shop-intro h2 { margin-bottom: 0.75rem; }
.ddd-shop-intro p { color: var(--mid-gray); }
.ddd-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.ddd-collection-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.ddd-collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ddd-collection-color {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.ddd-collection-body { padding: 1.5rem; }
.ddd-collection-body h3 { color: var(--plum-dark); margin-bottom: 0.5rem; }
.ddd-collection-body p { font-size: 0.88rem; color: var(--mid-gray); margin-bottom: 1rem; }
.ddd-price { font-size: 1.1rem; font-weight: 700; color: var(--plum); margin-bottom: 1rem; }

/* ── Legal Pages ── */
.ddd-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.ddd-legal-content h2 {
  font-size: 1.5rem;
  color: var(--plum);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blush);
}
.ddd-legal-content h3 { font-size: 1.1rem; color: var(--plum-dark); margin: 1.5rem 0 0.5rem; }
.ddd-legal-content p { color: var(--mid-gray); margin-bottom: 1rem; }
.ddd-legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.ddd-legal-content ul li { color: var(--mid-gray); margin-bottom: 0.4rem; }
.ddd-legal-highlight {
  background: var(--blush);
  border-left: 4px solid var(--plum);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.ddd-legal-highlight p { color: var(--plum-dark); font-weight: 600; margin: 0; }

/* ── Footer ── */
.ddd-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.ddd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ddd-footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ddd-footer-brand .brand-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ddd-footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.ddd-footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ddd-footer-col ul { list-style: none; }
.ddd-footer-col ul li { margin-bottom: 0.5rem; }
.ddd-footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color 0.2s; }
.ddd-footer-col ul li a:hover { color: var(--gold); }
.ddd-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.ddd-footer-bottom a { color: rgba(255,255,255,0.5); }
.ddd-footer-bottom a:hover { color: var(--gold); }
.ddd-sms-footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ddd-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .ddd-hero-actions { justify-content: center; }
  .ddd-hero-photo { max-width: 320px; }
  .ddd-hero-badge { left: 50%; transform: translateX(-50%); bottom: -1.5rem; }
  .ddd-about-grid { grid-template-columns: 1fr; }
  .ddd-contact-grid { grid-template-columns: 1fr; }
  .ddd-footer-grid { grid-template-columns: 1fr 1fr; }
  .ddd-pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ddd-nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--plum-dark); padding: 1rem 1.5rem; gap: 1rem; }
  .ddd-nav-links.open { display: flex; }
  .ddd-hamburger { display: flex; }
  .ddd-pillars-grid { grid-template-columns: 1fr; }
  .ddd-footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ddd-footer-bottom { flex-direction: column; text-align: center; }
}
