/*
 Theme Name:     Divi Soliloquie Child
 Theme URI:      https://example.com/
 Description:    A Divi child theme with a soft, editorial, Soliloquie-inspired aesthetic (neutral palette, serif headings, clean buttons).
 Author:         Eric Bernal
 Author URI:     https://blastdigitalmedia.com/
 Template:       Divi
 Version:        1.0.1
*/

/* =========================
   Design Tokens
   ========================= */
:root{
  /* Neutrals (tweak to match Soliloquie exactly) */
  --slq-cream: #f6f1ea;
  --slq-sand:  #e9dfd3;
  --slq-linen: #fffaf3;
  --slq-ink:   #1d1b18;
  --slq-muted: #6c675f;

  /* Accent */
  --slq-accent: #9a7b66; /* warm taupe */
  --slq-accent-2: #c2a58f; /* lighter accent */

  /* UI */
  --slq-radius: 18px;
  --slq-radius-sm: 12px;
  --slq-shadow: 0 14px 40px rgba(0,0,0,.08);
  --slq-border: 1px solid rgba(29,27,24,.14);
  --slq-maxw: 1180px;
}

/* =========================
   Global Typography + Layout
   ========================= */

/* Body font */
body{
  
  background: var(--slq-linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Constrain inner widths a bit for an editorial feel */
.et_pb_row,
.et_pb_section .et_pb_row{
  max-width: var(--slq-maxw);
}

.et-l et-l--header {
	background-color: var(--slq-cream);
}

/* Headings: elegant serif */
h1,h2,h3,h4,h5,h6,
.et_pb_text h1, .et_pb_text h2, .et_pb_text h3, .et_pb_text h4, .et_pb_text h5, .et_pb_text h6{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}

/* Body: modern sans */
body, p, li, a, .et_pb_text{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
}


/* Subheads / small caps vibe */
.slq-eyebrow,
.et_pb_text .slq-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--slq-muted);
}

