/*
Theme Name: Multisite Base Child
Theme URI: https://bizsethu.in
Description: A multisite-ready child theme with per-site header/footer and shared dark mode & language support
Author: BizSethu
Template: astra
Version: 1.0.0
Text Domain: multisite-base-child
*/

body.theme-karavali {
  outline: 10px solid red !important;
}

/* -------------------------------------------------
   Base typography helpers
-------------------------------------------------- */

.font-emoji {
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

/* -------------------------------------------------
   Headings – minimal defaults (Tailwind-friendly)
-------------------------------------------------- */

/* Let Tailwind utilities control most colors */
h1, h2, h3 {
  font-weight: 700;
}

/* Optional default colors ONLY when no Tailwind class is applied */
body:not(.dark) h1:not([class]),
body:not(.dark) h2:not([class]),
body:not(.dark) h3:not([class]) {
  color: #111827; /* gray-900 */
}

.dark h1:not([class]),
.dark h2:not([class]),
.dark h3:not([class]) {
  color: #ffffff;
}

/* -------------------------------------------------
   Astra cleanup (only footer remnants)
-------------------------------------------------- */

/* Footer leftovers that Astra sometimes injects */
.ast-small-footer,
.ast-footer-overlay,
.ast-builder-footer-wrap,
.ast-footer-copyright,
.ast-footer-html-1,
.ast-footer-html-2,
.ast-footer-bar {
  display: none !important;
}

/* Multisite-safe: force full width for Elementor pages */
body.elementor-page main,
body.elementor-page .site-main,
body.elementor-page .content-area,
body.elementor-page .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}




/* ===============================
   Karavali Trading Zone – Theme
   =============================== */

.theme-karavali {
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --border-subtle: #e2e8f0;

  --brand-primary: #4f46e5;
  --brand-primary-hover: #4338ca;
  --brand-accent: #10b981;
}

.theme-karavali.dark {
  --bg-main: #020617;
  --bg-surface: #020617;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2933;

  --brand-primary: #6366f1;
  --brand-primary-hover: #4f46e5;
  --brand-accent: #34d399;
}

body.theme-karavali {
  background-color: var(--bg-main);
  color: var(--text-main);
}

body.theme-karavali #karavali-debug-badge {
  display: block;
}


/* ===============================
   Karavali – Wealth & Discipline Theme
   =============================== */

.theme-karavali-wealth {
  --bg-main: #fdfefe;
  --bg-surface: #ffffff;
  --text-main: #0b1220;
  --text-muted: #4b5563;
  --border-subtle: #e5e7eb;

  --brand-primary: #0f766e;      /* Teal – stability & growth */
  --brand-primary-hover: #115e59;
  --brand-accent: #b45309;       /* Gold – wealth & value */
}

.theme-karavali-wealth.dark {
  --bg-main: #020617;
  --bg-surface: #020617;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2933;

  --brand-primary: #2dd4bf;
  --brand-primary-hover: #14b8a6;
  --brand-accent: #fbbf24;
}

/* Light mode (default) */
:root {
  --bg-main: #ffffff;
  --bg-surface: #f9fafb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --brand-primary: #4f46e5;
}

/* Dark mode */
html.dark {
  --bg-main: #0f172a;
  --bg-surface: #111827;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2937;
  --brand-primary: #818cf8;
}




