/* ========================================
   REKINDLE DESIGN SYSTEM
   Complete styling for all pages
   ======================================== */

/* ===== GOOGLE FONTS =====
   Deliberately NOT loaded here. An @import in this file cannot begin until this
   file has downloaded and parsed, which puts a serial request on the critical
   path. Fonts are now requested from snippets/global_head.liquid, where the
   browser finds them in the initial HTML — see the comment there. */

/* ===== CSS VARIABLES (DESIGN TOKENS) =====
   Palette matched to rekindle.love (src/index.css computed values) so the
   member site reads as the same product as the marketing site. Token names are
   unchanged from the original file — many rules below depend on them. */
:root {
  /* Brand */
  --rekindle-gold: #C18A29;
  /* Buttons only. Cream on #C18A29 is 2.9:1 — below WCAG AA even for large
     text. This darker gold gives 3.95:1 and stays visually gold. The rest of
     the palette keeps rekindle.love's exact value above. */
  --rekindle-gold-button: #A67322;
  --rekindle-pink: #E491A6;
  --rekindle-gold-light: #EADDC8;   /* primary-soft */
  --rekindle-pink-light: #F2D8DF;   /* accent-soft  */
  --rekindle-peach: #E6C2B3;        /* secondary    */
  --rekindle-deep: #4C2E24;         /* deep brown   */

  /* Neutrals — warm, never gray */
  --rekindle-dark: #3C2720;         /* foreground   */
  --rekindle-gray: #604339;         /* muted-fg     */
  --rekindle-gray-medium: #7A5C50;
  --rekindle-gray-light: #C9B8B0;
  --rekindle-gray-lighter: #E8DED9; /* border       */

  /* Backgrounds */
  --rekindle-bg-white: #FBFAF9;
  --rekindle-bg-warm: #F8F4F1;      /* card         */
  --rekindle-bg-tint: #F6EDEA;
  --rekindle-bg-cream: #EFE9E7;     /* muted        */

  /* Channel triplets, for opacity variants without hand-mixing hexes */
  --rekindle-gold-rgb: 193, 138, 41;
  --rekindle-pink-rgb: 228, 145, 166;
  --rekindle-border-rgb: 232, 222, 217;
  --rekindle-deep-rgb: 76, 46, 36;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows — tinted, not neutral. Every hover is a gold->pink glow shift;
     that colored-glow move is the most recognizable trait of the look. */
  --shadow-sm: 0 2px 10px -2px rgba(var(--rekindle-gold-rgb), 0.10);
  --shadow-md: 0 4px 20px -4px rgba(var(--rekindle-gold-rgb), 0.15);
  --shadow-soft: 0 4px 20px -4px rgba(var(--rekindle-gold-rgb), 0.15);
  --shadow-warm: 0 8px 30px -8px rgba(var(--rekindle-pink-rgb), 0.25);
  --shadow-lg: 0 8px 30px -8px rgba(var(--rekindle-pink-rgb), 0.25);
  --shadow-xl: 0 0 40px rgba(var(--rekindle-deep-rgb), 0.10);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #C18A29, #E491A6, #E6C2B3);
  --gradient-soft: linear-gradient(180deg, #FAF7F5, #F6EDEA);
  --gradient-intimate: linear-gradient(135deg, #F2D8DF, #EEE4D3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-base: 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  color: var(--rekindle-gray) !important;
  font-weight: 300;   /* rekindle.love body is font-light; big part of the airy feel */
  line-height: 1.7;
  background: var(--rekindle-bg-white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading) !important;
  color: var(--rekindle-dark) !important;
  font-weight: 600 !important;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: var(--space-md);
}

h1, .h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-lg);
}

h2, .h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3, .h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4, .h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5, .h5 {
  font-size: 1.125rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--rekindle-gray-medium);
}

strong, b {
  font-weight: 600;
  color: var(--rekindle-dark);
}

/* ===== LINKS =====
   Buttons are <a class="btn"> elements in Kajabi, so a bare `a` rule with
   !important also repaints every button label. Excluding .btn/.button here lets
   each button's own text color (theme Style Guide, or the per-block
   btn_text_color that block_cta.liquid emits inline) apply as intended. */
a:not(.btn):not(.button) {
  color: var(--rekindle-gold) !important;
  text-decoration: none;
  transition: color var(--transition-base);
}

a:not(.btn):not(.button):hover {
  color: var(--rekindle-pink) !important;
}

a:focus {
  outline: 2px solid var(--rekindle-gold);
  outline-offset: 2px;
}

/* Content area links with underline */
.content a,
article a,
.blog-post a,
.post-content a,
.post-body a {
  border-bottom: 1px solid rgba(200, 146, 91, 0.3);
  transition: all var(--transition-base);
}

.content a:hover,
article a:hover,
.blog-post a:hover,
.post-content a:hover,
.post-body a:hover {
  border-bottom-color: var(--rekindle-gold);
  color: var(--rekindle-pink) !important;
}

/* ===== BUTTONS =====
   Deliberately does NOT set background, color or border-radius. Those belong to
   Kajabi's own per-button settings — the theme Style Guide, and the per-block
   btn_background_color / btn_border_radius that block_cta.liquid emits inline.

   The rule that used to live here set all three with !important, and matched
   [class*="btn"] and [class*="button"]. Two consequences:
     1. Button color and corner radius were not editable from the Kajabi editor;
        the !important beat the inline per-block style regardless of order.
     2. [class*="button"] also matched .product__button — a layout wrapper div in
        snippets/product.liquid — so the library card's button area was painted
        gold at full card height, which is what made it render as a tall slab. */
button,
.button,
.btn,
input[type="submit"],
input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--font-body);
  /* 18px/700 is Kajabi's own button sizing. It also puts button labels in
     WCAG's large-text category, where the 3.0:1 threshold applies. */
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-soft);
}

button:hover,
.button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-1px);
  text-decoration: none;
}

button:active,
.button:active,
.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft);
}

/* Kajabi's outline variant is .btn--outline. The old .btn--secondary /
   .button.secondary rules here matched nothing, so outline buttons were being
   painted solid gold by the rule above. block_cta.liquid already emits the
   right colors inline; this just keeps the fill transparent. */
.btn--outline {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  box-shadow: none;
}

.btn--outline:hover {
  box-shadow: var(--shadow-soft);
}

/* ===== FORMS ===== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--rekindle-dark);
  background: white;
  border: 2px solid var(--rekindle-gray-lighter) !important;
  border-radius: var(--radius-md) !important;
  transition: all var(--transition-base);
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: var(--rekindle-gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 146, 91, 0.1) !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--rekindle-gray-light);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--rekindle-dark);
}

/* ===== CARDS ===== */
.card,
.product-card,
.post-card,
.blog-card,
.course-card {
  background: white;
  border: 1px solid var(--rekindle-gray-lighter);
  border-radius: var(--radius-lg) !important;
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover,
.product-card:hover,
.post-card:hover,
.blog-card:hover,
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rekindle-gold);
}

/* ===== BLOG STYLES ===== */
.blog-post,
.post-content,
.post-body,
article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post h1,
.post-content h1,
.post-body h1,
article h1 {
  background: linear-gradient(135deg, var(--rekindle-gold), var(--rekindle-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.blog-post h2,
.blog-post h3,
.post-content h2,
.post-content h3,
.post-body h2,
.post-body h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.blog-post p,
.post-content p,
.post-body p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.blog-post img,
.post-content img,
.post-body img {
  border-radius: var(--radius-lg);
  max-width: 100%;
  height: auto;
  margin: var(--space-lg) 0;
}

.post-meta {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--rekindle-gray-medium);
}

/* Blog Listings */
.blog-listing,
.post-listing,
.blog-posts {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.blog-listing-item,
.post-listing-item {
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--rekindle-gray-lighter);
}

.blog-listing-item:last-child,
.post-listing-item:last-child {
  border-bottom: none;
}

/* ===== NAVIGATION ===== */
nav,
.nav,
.navigation,
.header nav {
  font-family: var(--font-body);
}

nav a,
.nav-link,
.menu-link,
.header a {
  color: var(--rekindle-dark) !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: color var(--transition-base);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

nav a:hover,
.nav-link:hover,
.menu-link:hover,
.header a:hover {
  color: var(--rekindle-gold) !important;
  background: var(--rekindle-bg-tint);
}

/* ===== HEADER ===== */
header,
/* Header background is NOT set here. sections/header.liquid emits it from the
   section's own background_color setting, so forcing a colour with !important
   here made that editor setting silently ineffective. */
.header,
.site-header {
  border-bottom: 1px solid rgba(var(--rekindle-border-rgb), 0.6);
}

/* The logo is the gold mark + wordmark side by side, matching rekindle.love.
   The mark comes from assets/logo.png via asset_url in
   snippets/shared_block_logo.liquid — see the comment there for why it can't
   live in the block's image_picker field. */
.header-logo,
.logo {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rekindle-dark) !important;
  text-decoration: none;
}

.logo__mark {
  display: block;
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.logo__text {
  margin: 0;
  line-height: 1.1;
  font-family: var(--font-heading);
}

/* The footer mark sits slightly larger, as it does on rekindle.love */
.footer .logo__mark {
  width: 44px;
}

/* ===== FOOTER ===== */
footer,
.footer,
.site-footer {
  background: var(--rekindle-bg-tint) !important;
  color: var(--rekindle-gray) !important;
  padding: var(--space-3xl) 0 var(--space-xl) 0;
}

footer h4,
footer h5,
.footer h4,
.footer h5 {
  color: var(--rekindle-dark) !important;
  font-family: var(--font-heading) !important;
  margin-bottom: var(--space-md);
}

footer a,
.footer a {
  color: var(--rekindle-gray) !important;
  transition: color var(--transition-base);
}

footer a:hover,
.footer a:hover {
  color: var(--rekindle-gold) !important;
}

/* ===== LISTS ===== */
ul, ol {
  margin: 0 0 var(--space-lg) 0;
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

ul li::marker {
  color: var(--rekindle-gold);
}

ol li::marker {
  color: var(--rekindle-gold);
  font-weight: 600;
}

/* ===== BLOCKQUOTES ===== */
blockquote {
  margin: var(--space-2xl) 0;
  padding: var(--space-lg);
  padding-left: var(--space-xl);
  border-left: 4px solid var(--rekindle-gold);
  background: var(--rekindle-bg-tint);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--rekindle-gray-medium);
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  margin-bottom: var(--space-lg);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

thead {
  background: var(--rekindle-gold);
  color: white;
}

th {
  padding: 12px 16px;
  font-weight: 600;
  text-align: left;
  color: white !important;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rekindle-gray-lighter);
}

tbody tr:hover {
  background: var(--rekindle-bg-warm);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* ===== CODE ===== */
code {
  padding: 2px 6px;
  background: var(--rekindle-bg-tint);
  color: var(--rekindle-pink);
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  font-family: 'Monaco', 'Courier New', monospace;
}

pre {
  padding: var(--space-md);
  background: var(--rekindle-dark);
  color: white;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: var(--space-lg);
}

pre code {
  padding: 0;
  background: none;
  color: inherit;
}

/* ===== BADGES & TAGS ===== */
.badge,
.tag,
.label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rekindle-bg-tint);
  color: var(--rekindle-gold);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.badge--primary,
.tag--primary {
  background: var(--rekindle-gold);
  color: white;
}

/* ===== GRADIENTS ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--rekindle-gold), var(--rekindle-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(180deg, 
    rgba(200, 146, 91, 0.1), 
    rgba(230, 167, 184, 0.05)
  );
}

/* ===== DIVIDERS ===== */
hr {
  margin: var(--space-2xl) 0;
  border: none;
  border-top: 1px solid var(--rekindle-gray-lighter);
}

/* ===== ALERTS ===== */
.alert {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid;
}

.alert-success {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border-color: #dc2626;
  color: #991b1b;
}

.alert-warning {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #92400e;
}

.alert-info {
  background: var(--rekindle-bg-tint);
  border-color: var(--rekindle-gold);
  color: var(--rekindle-dark);
}

/* ===== LOADING ===== */
.loading,
.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--rekindle-bg-tint);
  border-top-color: var(--rekindle-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-2xl);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  border: 1px solid var(--rekindle-gray-lighter);
  border-radius: var(--radius-sm);
  color: var(--rekindle-dark);
  transition: all var(--transition-base);
}

.pagination a:hover {
  background: var(--rekindle-gold) !important;
  border-color: var(--rekindle-gold);
  color: white !important;
}

.pagination .active {
  background: var(--rekindle-gold) !important;
  border-color: var(--rekindle-gold);
  color: white !important;
}

/* ===== CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 800px;
}

.container-wide {
  max-width: 1400px;
}

/* ===== SECTIONS =====
   Intentionally empty — do not add a `.section { padding: ... }` rule here.

   `.section` is Kajabi's own class on every section wrapper (sections/section.liquid).
   Padding set here stacks on top of the `.sizer` padding nested inside, and CANNOT be
   overridden from the Kajabi editor: the editor's per-section padding controls write to
   `#section-{id} .sizer` (snippets/section_styles.liquid), a different element nested
   inside this one. A rule here therefore adds dead space that looks unfixable.

   Section padding belongs in the per-section editor settings, not in global CSS. */

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-gold {
  color: var(--rekindle-gold) !important;
}

.text-pink {
  color: var(--rekindle-pink) !important;
}

.text-muted {
  color: var(--rekindle-gray-medium);
}

.bg-warm {
  background: var(--rekindle-bg-warm) !important;
}

.bg-tint {
  background: var(--rekindle-bg-tint) !important;
}

.bg-cream {
  background: var(--rekindle-bg-cream) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
  }
  
  .blog-listing-item,
  .post-listing-item {
    flex-direction: column;
  }
  
  button,
  .button,
  .btn {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
  }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid var(--rekindle-gold);
  outline-offset: 2px;
}

/* ===== MEMBER AREA (Library, Announcements) =====
   The rules that used to live here targeted .library-hero, .link-list-section,
   .announcement-item, .member-card, .page-header and .section-header. None of
   those class names exist anywhere in this theme's markup, so the whole block
   styled nothing — which is why these pages still looked like stock Serenity.

   These target the real classes, verified against snippets/product.liquid,
   snippets/block_link_list.liquid, snippets/resume_course.liquid and
   sections/products.liquid. */

/* -- member secondary nav (Dashboard / Announcements) -- */
.link-list__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rekindle-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

.link-list__link:hover {
  color: var(--rekindle-pink);
}

.link-list--row .link-list__link + .link-list__link {
  margin-left: 28px;
}

/* -- product cards in the library grid -- */
.product {
  background: var(--rekindle-bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--rekindle-border-rgb), 0.6);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-base);
  overflow: hidden;
}

.product:hover {
  box-shadow: var(--shadow-warm);
}

.product__title {
  font-family: var(--font-heading) !important;
  color: var(--rekindle-dark) !important;
  font-weight: 600;
}

.product__body {
  color: var(--rekindle-gray) !important;
  font-weight: 300;
  line-height: 1.7;
}

/* At >=768px, .product--12 .product__content switches to flex-direction: row
   (styles.scss.liquid), so .product__button stretches to the full card height
   and the button renders as a tall slab. Center it instead. */
.product__button {
  align-self: center;
}

.product__button .btn {
  height: auto;
  white-space: nowrap;
}

/* -- progress bar -- */
.progress {
  border-radius: var(--radius-full);
  overflow: hidden;
}

/* -- resume course card -- */
.resume-course {
  border-radius: var(--radius-xl);
}

.resume-course__title {
  font-family: var(--font-heading) !important;
  color: var(--rekindle-dark) !important;
}

.resume-course__status {
  font-family: var(--font-body) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem !important;
}

/* ===== REKINDLE SECTION-SPECIFIC STYLES ===== */

/* Feature blocks - card-like appearance */
.block-type--feature .block {
  border-radius: var(--radius-lg) !important;
  transition: all var(--transition-base);
}

.block-type--feature .block:hover {
  transform: translateY(-2px);
}

.block-type--feature .feature__text h4 {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  margin-bottom: 8px;
}

.block-type--feature .feature__text p {
  line-height: 1.7;
  color: var(--rekindle-gray);
}

/* Accordion blocks */
.block-type--accordion .block {
  border-radius: var(--radius-lg) !important;
}

.block-type--accordion .accordion__heading {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  color: var(--rekindle-dark);
  padding: 20px 30px;
}

.block-type--accordion .accordion__body {
  padding: 0 30px 20px;
  color: var(--rekindle-gray);
  line-height: 1.7;
}

/* Form blocks - Rekindle style */
.block-type--form .form-btn {
  background: var(--rekindle-gold) !important;
  border-color: var(--rekindle-gold) !important;
  border-radius: 25px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  transition: all var(--transition-base);
}

.block-type--form .form-btn:hover {
  background: var(--rekindle-pink) !important;
  border-color: var(--rekindle-pink) !important;
  transform: translateY(-1px);
}

.block-type--form .form-control {
  border: 2px solid var(--rekindle-gray-lighter) !important;
  border-radius: var(--radius-md) !important;
  padding: 12px 16px !important;
  transition: all var(--transition-base);
}

.block-type--form .form-control:focus {
  border-color: var(--rekindle-gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 146, 91, 0.1) !important;
}

/* Image blocks */
.block-type--image .image {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
}

.block-type--image .image__image {
  border-radius: var(--radius-lg) !important;
}

/* Text blocks - ensure proper heading styling */
.block-type--text h1,
.block-type--text h2,
.block-type--text h3,
.block-type--text h4 {
  font-family: var(--font-heading) !important;
  color: var(--rekindle-dark) !important;
}

/* Box shadow variations */
.box-shadow-soft {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.box-shadow-soft:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Section backgrounds with Rekindle warmth */
.section[style*="background-color"] {
  transition: background-color var(--transition-slow);
}

/* Smooth section transitions */
.section + .section {
  border-top: none;
}

/* Login page styling */
.login-form .form-control,
.password-form .form-control {
  border: 2px solid var(--rekindle-gray-lighter) !important;
  border-radius: var(--radius-md) !important;
}

.login-form .form-control:focus,
.password-form .form-control:focus {
  border-color: var(--rekindle-gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 146, 91, 0.1) !important;
}

/* Progress bars */
.progress,
.progress-bar {
  border-radius: var(--radius-full);
}

.progress-bar {
  background: linear-gradient(135deg, var(--rekindle-gold), var(--rekindle-pink)) !important;
}

/* Social icons */
.social-icon {
  color: var(--rekindle-gray) !important;
  transition: color var(--transition-base);
}

.social-icon:hover {
  color: var(--rekindle-gold) !important;
}

/* Selection color */
::selection {
  background: rgba(200, 146, 91, 0.2);
  color: var(--rekindle-dark);
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--rekindle-bg-warm);
}

::-webkit-scrollbar-thumb {
  background: var(--rekindle-gray-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rekindle-gold);
}

/* Print styles */
@media print {
  header, footer, .exit-pop, .two-step {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  a {
    color: var(--rekindle-dark) !important;
    text-decoration: underline !important;
  }
}
