/* ==========================================================================
   CLUB AAYURVEDA - Base Design System & CSS Variables
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Exact Club Aayurveda Visual Palette */
  --color-charcoal-deep: #151512;
  --color-olive-deep: #39452A;
  --color-green-botanical: #687B45;
  --color-lime-accent: #B7D62F;
  --color-ivory-warm: #F7F3E8;
  --color-cream-soft: #EFE7D5;
  --color-gold-champagne: #C6A15B;
  --color-gold-rich: #A97924;
  --color-white: #FFFFFF;
  
  /* System Backgrounds */
  --color-bg-primary: #F7F3E8;        /* Warm Ivory */
  --color-bg-secondary: #EFE7D5;      /* Soft Cream */
  --color-bg-card: #FFFFFF;           /* White */
  --color-bg-dark: #151512;           /* Deep Charcoal */
  --color-bg-dark-surface: #1F211C;   /* Deep Charcoal Surface */
  
  /* System Typography */
  --color-text-main: #151512;         /* Deep Charcoal for strong text */
  --color-text-muted: #495042;        /* Warm Olive Neutral */
  --color-text-light: #7A8373;        /* Soft Sage Neutral */
  --color-text-inverse: #F7F3E8;      /* Warm Ivory */
  
  /* Restrained Gold Accents */
  --color-gold-primary: #C6A15B;      /* Champagne Gold */
  --color-gold-hover: #D8B46D;
  --color-gold-dark: #A97924;         /* Rich Gold */
  --color-gold-light: rgba(198, 161, 91, 0.15);
  --color-gold-border: rgba(198, 161, 91, 0.38);
  --color-gold-gradient: linear-gradient(135deg, #C6A15B 0%, #A97924 100%);
  
  /* Botanical & Olive Brand Accents */
  --color-green-deep: #39452A;        /* Deep Olive */
  --color-green-light: rgba(104, 123, 69, 0.12);
  --color-green-accent: #B7D62F;      /* Lime Green Accent from product logo */
  --color-green-lime: #B7D62F;
  
  /* Borders & Shadows */
  --border-subtle: 1px solid rgba(21, 21, 18, 0.08);
  --border-gold: 1px solid rgba(198, 161, 91, 0.4);
  --border-card: 1px solid rgba(57, 69, 42, 0.12);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(21, 21, 18, 0.04);
  --shadow-md: 0 10px 30px rgba(21, 21, 18, 0.07);
  --shadow-lg: 0 20px 50px rgba(21, 21, 18, 0.12);
  --shadow-gold: 0 10px 30px rgba(198, 161, 91, 0.22);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Spacing Container */
  --container-max-width: 1280px;
  --container-padding: clamp(1.25rem, 5vw, 3rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-primary);
  color: var(--color-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text-main);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

h4 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  max-width: 100%;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
  position: relative;
}

.section-sm {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-text-inverse);
}

.section-dark p {
  color: rgba(247, 243, 232, 0.78);
}

.section-secondary {
  background-color: var(--color-bg-secondary);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
  margin-bottom: 0.85rem;
}

.eyebrow::before,
.eyebrow.with-lines::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-gold-primary);
}

.section-heading-wrap {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading-wrap.align-left {
  margin-left: 0;
  text-align: left;
}

.subheading {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* Gold Text Highlight */
.gold-text {
  color: var(--color-gold-dark);
  font-style: italic;
}

.section-dark .gold-text {
  color: var(--color-gold-hover);
}

/* Subtle botanical accent background */
.bg-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  max-width: 100vw;
  max-height: 100vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.09) 0%, rgba(104, 123, 69, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

