/*
Theme Name: LiveBeyond
Theme URI: https://livebeyondwellness.org
Author: LiveBeyond Studio
Author URI: https://livebeyondwellness.org
Description: A luxury, fully customizable WordPress theme featuring Mint Green and Pink aesthetics, dual navigation menus, above-the-fold Life Coaching appointment booking, WooCommerce store integration, Mailchimp newsletter, interactive Mood Wave tracker, crisis telephone helpline modal, and promotional advert pop-up. Inspired by Artza Box.
Version: 1.1.1
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: livebeyond
Tags: two-columns, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-width-template, theme-options, translation-ready, e-commerce, blog
*/

/* ------------------------------------------------------------------------- *
 *  Design Tokens & Global CSS Variables (Mint Green & Pink System)
 * ------------------------------------------------------------------------- */
:root {
  /* Brand Primary: Mint Green */
  --lb-mint-50: #f0fdf4;
  --lb-mint-100: #dcfce7;
  --lb-mint-200: #bbf7d0;
  --lb-mint-300: #86efac;
  --lb-mint-400: #4ade80;
  --lb-mint-500: #10b981;  /* Primary Mint */
  --lb-mint-600: #059669;
  --lb-mint-700: #047857;
  --lb-mint-800: #065f46;
  --lb-mint-900: #064e3b;
  --lb-mint-rgb: 16, 185, 129;

  /* Brand Secondary: Soft & Vibrant Pinks */
  --lb-pink-50: #fdf2f8;
  --lb-pink-100: #fce7f3;
  --lb-pink-200: #fbcfe8;
  --lb-pink-300: #f472b6;
  --lb-pink-400: #ec4899;  /* Secondary Pink */
  --lb-pink-500: #db2777;
  --lb-pink-600: #be185d;
  --lb-pink-700: #9d174d;
  --lb-pink-rgb: 236, 72, 153;

  /* Accent & Gradients */
  --lb-gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --lb-gradient-pink: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  --lb-gradient-mint-pink: linear-gradient(135deg, #10b981 0%, #ec4899 100%);
  --lb-gradient-subtle: linear-gradient(180deg, #f0fdf4 0%, #fdf2f8 100%);

  /* Neutrals & Dark Shades */
  --lb-bg-body: #fbfbf9;
  --lb-bg-surface: #ffffff;
  --lb-bg-card: #ffffff;
  --lb-bg-muted: #f4f6f5;
  --lb-text-main: #192328;
  --lb-text-heading: #0e171b;
  --lb-text-muted: #62727b;
  --lb-text-light: #8e9ca4;
  --lb-border-color: #e5eae7;
  --lb-border-light: #f0f3f1;

  /* Typography */
  --lb-font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lb-font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --lb-container-max: 1320px;
  --lb-container-pad: 24px;
  --lb-radius-sm: 8px;
  --lb-radius-md: 14px;
  --lb-radius-lg: 20px;
  --lb-radius-xl: 32px;
  --lb-radius-full: 9999px;

  /* Shadows */
  --lb-shadow-sm: 0 2px 8px rgba(16, 185, 129, 0.06);
  --lb-shadow-md: 0 8px 24px rgba(16, 185, 129, 0.08);
  --lb-shadow-lg: 0 16px 36px rgba(16, 185, 129, 0.12);
  --lb-shadow-pink: 0 8px 25px rgba(236, 72, 153, 0.25);
  --lb-shadow-mint: 0 8px 25px rgba(16, 185, 129, 0.25);

  /* Transitions */
  --lb-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------------------------------- *
 *  Base Resets & Global Styles
 * ------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--lb-font-family);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lb-text-main);
  background-color: var(--lb-bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lb-font-heading);
  color: var(--lb-text-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3vw + 0.5rem, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.35rem, 2vw + 0.25rem, 1.85rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }

p {
  margin-bottom: 1.25rem;
  color: var(--lb-text-muted);
}

a {
  color: var(--lb-mint-600);
  text-decoration: none;
  transition: var(--lb-transition);
}

a:hover, a:focus {
  color: var(--lb-pink-500);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--lb-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--lb-container-pad);
  padding-right: var(--lb-container-pad);
}

.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;
}
