/**
 * MUSHROOM BEVERAGE BRAND STYLE GUIDE
 *
 * Design Philosophy:
 * - OLIPOP's health-conscious credibility (earthy, natural, trustworthy)
 * - LaCroix's playful approachability (vibrant, whimsical, joyful)
 * - Perfect for functional mushroom beverages
 *
 * Color Strategy:
 * - Earth tones as foundation (credibility)
 * - Vibrant accent colors (playfulness)
 * - Mushroom-inspired palette (brand relevance)
 */

/* ============================================
   BRAND FONTS
   ============================================ */

/* Thirsty Rough - Display/Heading Font (per PowerPoint Template) */
@font-face {
  font-family: 'Thirsty Rough';
  src: url('docs/assets/Brand Assets/Fonts/ThirstyRoughBolTwo.woff2') format('woff2'),
       url('docs/assets/Brand Assets/Fonts/ThirstyRoughBolTwo.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* TAY Birdie - Brand Name Font (per PowerPoint Template) */
@font-face {
  font-family: 'TAY Birdie';
  src: url('docs/assets/Brand Assets/Fonts/TAYBirdie.woff2') format('woff2'),
       url('docs/assets/Brand Assets/Fonts/TAYBirdie.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Alexandria - Body Font (Variable, use Light weight 300 per PowerPoint Template) */
@font-face {
  font-family: 'Alexandria';
  src: url('docs/assets/Brand Assets/Fonts/Alexandria-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */

:root {
  /* PRIMARY BRAND COLORS (OLIPOP-inspired earth tones) */
  --color-primary-forest: #14433D;        /* Deep forest green - primary brand */
  --color-primary-mushroom: #8B7355;      /* Earthy mushroom brown */
  --color-primary-moss: #5C6B3E;          /* Moss green - natural, organic */
  --color-primary-clay: #A0826D;          /* Clay/terracotta - warm earth */

  /* SECONDARY PLAYFUL COLORS (LaCroix-inspired vibrancy) */
  --color-secondary-sunrise: #FFB366;     /* Warm orange - energetic */
  --color-secondary-lavender: #C8B7FF;    /* Soft purple - whimsical */
  --color-secondary-mint: #B4FFD9;        /* Fresh mint - refreshing */
  --color-secondary-coral: #FF9AA2;       /* Playful coral - friendly */
  --color-secondary-lemon: #FEFF76;       /* Bright lemon - joyful */
  --color-secondary-sky: #ADE5FF;         /* Sky blue - light, airy */

  /* NEUTRAL PALETTE */
  --color-white: #FFFFFF;
  --color-cream: #FAF8F5;                 /* Warm off-white */
  --color-light-gray: #EBEBEB;
  --color-medium-gray: #A8A8A8;
  --color-dark-gray: #3A3A3A;
  --color-charcoal: #2B2B2B;
  --color-black: #000000;

  /* FUNCTIONAL COLORS */
  --color-success: #5C6B3E;               /* Moss green */
  --color-error: #E07A5F;                 /* Muted coral red */
  --color-warning: #F4A261;               /* Warm amber */
  --color-info: #81B29A;                  /* Sage green */

  /* TYPOGRAPHY (per PowerPoint Template) */
  --font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;  /* Body text */
  --font-family-display: 'Thirsty Rough', 'Impact', 'Arial Black', sans-serif;  /* Display headings */
  --font-family-accent: 'TAY Birdie', 'Comic Sans MS', cursive, sans-serif;  /* Brand name only */

  /* Font Weights */
  --font-weight-light: 300;        /* Alexandria Light */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Font Sizes - Mobile First */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-md: 1.125rem;     /* 18px */
  --font-size-lg: 1.25rem;      /* 20px */
  --font-size-xl: 1.5rem;       /* 24px */
  --font-size-2xl: 2rem;        /* 32px */
  --font-size-3xl: 2.5rem;      /* 40px */
  --font-size-4xl: 3rem;        /* 48px */
  --font-size-5xl: 4rem;        /* 64px */

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;

  /* Letter Spacing */
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;

  /* SPACING SCALE (8px base) */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 0.75rem;    /* 12px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 2.5rem;    /* 40px */
  --space-3xl: 3rem;      /* 48px */
  --space-4xl: 4rem;      /* 64px */
  --space-5xl: 5rem;      /* 80px */
  --space-6xl: 6rem;      /* 96px */
  --space-7xl: 7.5rem;    /* 120px - Section spacing per design spec */
  --space-8xl: 10rem;     /* 160px - Hero spacing per design spec */

  /* BORDER RADIUS */
  --radius-none: 0;
  --radius-sm: 0.25rem;    /* 4px - subtle OLIPOP style */
  --radius-md: 0.5rem;     /* 8px - moderate */
  --radius-lg: 1rem;       /* 16px - friendly */
  --radius-xl: 1.5rem;     /* 24px - playful LaCroix style */
  --radius-2xl: 2rem;      /* 32px */
  --radius-full: 9999px;   /* Full pill shape */

  /* SHADOWS */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* TRANSITIONS */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* LAYOUT */
  --container-max-width: 1440px;
  --container-padding-mobile: 1.5rem;     /* 24px - Design spec mobile side margins */
  --container-padding-desktop: 5rem;      /* 80px - Design spec desktop side margins */
  --grid-gap-mobile: 1rem;                /* 16px - Design spec mobile gutters */
  --grid-gap-desktop: 2rem;               /* 32px - Design spec desktop gutters */

  /* Z-INDEX SCALE */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}


/* ============================================
   RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);  /* Alexandria Light per brand template */
  line-height: var(--line-height-normal);
  color: var(--color-dark-gray);
  background-color: var(--color-cream);
  background-image: url('docs/assets/Brand%20Assets/Color%20Palettes/mountain%20background%20png.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Mobile fix for background - fixed attachment doesn't work well on mobile */
@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

/* Headings - Use Alexandria Light */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  color: var(--color-primary-forest);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
}

h1, .h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-xl);
}

h2, .h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-lg);
}

h3, .h3 {
  font-size: var(--font-size-xl);
}

h4, .h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

h5, .h5 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
}

h6, .h6 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
}

/* Desktop Heading Sizes */
@media (min-width: 768px) {
  h1, .h1 { font-size: var(--font-size-5xl); }
  h2, .h2 { font-size: var(--font-size-4xl); }
  h3, .h3 { font-size: var(--font-size-3xl); }
  h4, .h4 { font-size: var(--font-size-2xl); }
}

/* Body Text */
p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);  /* Alexandria Light */
  line-height: var(--line-height-relaxed);
  color: var(--color-primary-mushroom);
}

.small {
  font-size: var(--font-size-sm);
}

.tiny {
  font-size: var(--font-size-xs);
}

/* Accent Text - Playful LaCroix Style */
.text-playful {
  font-family: var(--font-family-accent);
  font-style: italic;
  color: var(--color-secondary-lavender);
}

/* Brand Name - TAY Birdie Font */
.brand-name {
  font-family: var(--font-family-accent);
  font-weight: normal;
  font-style: normal;
}

/* Thirsty Rough - Only for "Functional Sparkling Tea" */
.thirsty-rough {
  font-family: var(--font-family-display);
  font-weight: var(--font-weight-bold);
}

/* Links */
a {
  color: var(--color-primary-forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: all var(--transition-base);
}

a:hover,
a:focus {
  color: var(--color-secondary-coral);
  text-decoration-thickness: 2px;
}

/* Lists */
ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
}

/* Emphasis */
strong, b {
  font-weight: var(--font-weight-bold);
  color: var(--color-charcoal);
}

em, i {
  font-style: italic;
}


/* ============================================
   BUTTONS - Blend of Both Styles
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button - Forest Green (OLIPOP credibility) */
.btn-primary {
  background-color: var(--color-primary-forest);
  color: var(--color-white);
  border-color: var(--color-primary-forest);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-primary-moss);
  border-color: var(--color-primary-moss);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button - Playful Coral (LaCroix energy) */
.btn-secondary {
  background-color: var(--color-secondary-coral);
  color: var(--color-white);
  border-color: var(--color-secondary-coral);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--color-secondary-sunrise);
  border-color: var(--color-secondary-sunrise);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline Button - Clean & Versatile */
.btn-outline {
  background-color: transparent;
  color: var(--color-primary-forest);
  border-color: var(--color-primary-forest);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--color-primary-forest);
  color: var(--color-white);
}

/* Ghost Button - Minimal */
.btn-ghost {
  background-color: transparent;
  color: var(--color-primary-forest);
  border-color: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background-color: var(--color-light-gray);
}

/* Pill Button - Full LaCroix Playfulness */
.btn-pill {
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 1.125rem 2rem;
  font-size: var(--font-size-lg);
}

.btn-xl {
  padding: 1.5rem 3rem;
  font-size: var(--font-size-xl);
}

/* Full Width Button */
.btn-block {
  display: flex;
  width: 100%;
}


/* ============================================
   CARDS - Product & Content Display
   ============================================ */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
}

.card-body {
  padding: var(--space-lg);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-forest);
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--color-dark-gray);
  margin-bottom: var(--space-md);
}

/* Flavor Card - LaCroix-Style Colorful */
.card-flavor {
  position: relative;
  border: 3px solid transparent;
  transition: all var(--transition-bounce);
}

.card-flavor:hover {
  transform: scale(1.05);
}

.card-flavor.flavor-mint {
  border-color: var(--color-secondary-mint);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary-mint) 100%);
}

.card-flavor.flavor-lavender {
  border-color: var(--color-secondary-lavender);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary-lavender) 100%);
}

.card-flavor.flavor-coral {
  border-color: var(--color-secondary-coral);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary-coral) 100%);
}

.card-flavor.flavor-sunrise {
  border-color: var(--color-secondary-sunrise);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary-sunrise) 100%);
}


/* ============================================
   BADGES & LABELS
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.badge-primary {
  background-color: var(--color-primary-forest);
  color: var(--color-white);
}

.badge-playful {
  background-color: var(--color-secondary-lavender);
  color: var(--color-charcoal);
}

.badge-success {
  background-color: var(--color-success);
  color: var(--color-white);
}

.badge-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary-forest);
  color: var(--color-primary-forest);
}


/* ============================================
   FORMS - Clean & Approachable
   ============================================ */

.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-forest);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  color: var(--color-dark-gray);
  background-color: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary-moss);
  box-shadow: 0 0 0 3px rgba(92, 107, 62, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-medium-gray);
  font-style: italic;
}

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

/* Checkbox & Radio - Playful Styling */
input[type="checkbox"],
input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: var(--space-xs);
  accent-color: var(--color-primary-forest);
  cursor: pointer;
}


/* ============================================
   LAYOUT UTILITIES
   ============================================ */

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

@media (min-width: 768px) {
  .container {
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
  }
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Grid System */
.grid {
  display: grid;
  gap: var(--grid-gap-mobile);
}

@media (min-width: 768px) {
  .grid {
    gap: var(--grid-gap-desktop);
  }
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grid */
@media (max-width: 767px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================
   SPACING UTILITIES
   ============================================ */

/* Margin */
.m-0 { margin: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Padding */
.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }
.p-3xl { padding: var(--space-3xl); }

.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pt-2xl { padding-top: var(--space-2xl); }
.pt-3xl { padding-top: var(--space-3xl); }
.pt-4xl { padding-top: var(--space-4xl); }
.pt-5xl { padding-top: var(--space-5xl); }
.pt-7xl { padding-top: var(--space-7xl); }
.pt-8xl { padding-top: var(--space-8xl); }

.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }
.pb-2xl { padding-bottom: var(--space-2xl); }
.pb-3xl { padding-bottom: var(--space-3xl); }
.pb-4xl { padding-bottom: var(--space-4xl); }
.pb-5xl { padding-bottom: var(--space-5xl); }
.pb-7xl { padding-bottom: var(--space-7xl); }
.pb-8xl { padding-bottom: var(--space-8xl); }


/* ============================================
   BACKGROUND UTILITIES
   ============================================ */

.bg-white { background-color: var(--color-white); }
.bg-cream { background-color: var(--color-cream); }
.bg-forest { background-color: var(--color-primary-forest); }
.bg-mushroom { background-color: var(--color-primary-mushroom); }
.bg-mint { background-color: var(--color-secondary-mint); }
.bg-lavender { background-color: var(--color-secondary-lavender); }
.bg-coral { background-color: var(--color-secondary-coral); }
.bg-sunrise { background-color: var(--color-secondary-sunrise); }

/* Gradient Backgrounds - LaCroix Playfulness */
.bg-gradient-mint {
  background: linear-gradient(135deg, var(--color-secondary-mint) 0%, var(--color-secondary-sky) 100%);
}

.bg-gradient-sunset {
  background: linear-gradient(135deg, var(--color-secondary-coral) 0%, var(--color-secondary-sunrise) 100%);
}

.bg-gradient-earth {
  background: linear-gradient(135deg, var(--color-primary-mushroom) 0%, var(--color-primary-clay) 100%);
}

.bg-gradient-forest {
  background: linear-gradient(135deg, var(--color-primary-forest) 0%, var(--color-primary-moss) 100%);
}


/* ============================================
   TEXT UTILITIES
   ============================================ */

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

.text-white { color: var(--color-white); }
.text-forest { color: var(--color-primary-forest); }
.text-mushroom { color: var(--color-primary-mushroom); }
.text-charcoal { color: var(--color-charcoal); }
.text-gray { color: var(--color-dark-gray); }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.font-bold { font-weight: var(--font-weight-bold); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-regular { font-weight: var(--font-weight-regular); }


/* ============================================
   ANIMATIONS - LaCroix Whimsy
   ============================================ */

/* Floating Animation - For playful elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Pulse - For attention-grabbing elements */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Fade In - For content reveals */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Bounce - Playful hover state */
.hover-bounce {
  transition: transform var(--transition-bounce);
}

.hover-bounce:hover {
  transform: scale(1.1);
}


/* ============================================
   WAVE DIVIDERS - OLIPOP-Inspired Organic Shapes
   ============================================ */

.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.wave-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23FAF8F5'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}


/* ============================================
   NAVIGATION - Clean & Accessible
   ============================================ */

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
}

.nav-link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary-forest);
  text-decoration: none;
  transition: all var(--transition-base);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-secondary-coral);
  background-color: var(--color-light-gray);
}

.nav-link.active {
  color: var(--color-white);
  background-color: var(--color-primary-forest);
}


/* ============================================
   HERO SECTION - Blend of Both Styles
   ============================================ */

.hero {
  position: relative;
  min-height: 760px;
  padding: var(--space-8xl) 0;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-secondary-mint) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: var(--font-size-4xl);
  color: var(--color-primary-forest);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  text-align: left;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-primary-mushroom);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
  max-width: 100%;
  text-align: left;
}

.hero-content {
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: var(--space-2xl);
}

.hero-image {
  flex: 0 0 60%;
  max-width: 60%;
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    text-align: center;
  }

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

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

  .hero-content,
  .hero-image {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
}

/* Hero brand name - WANDER */
.hero-brand {
  font-family: var(--font-family-accent);
  font-size: 4rem;
  color: var(--color-primary-forest);
  margin-bottom: var(--space-md);
  font-weight: normal;
  line-height: 1;
}

@media (min-width: 768px) {
  .hero-brand {
    font-size: 6rem; /* Extra large on desktop for prominence */
  }

  .hero-title {
    font-size: var(--font-size-5xl);
  }
}


/* ============================================
   PRODUCT SHOWCASE - Flavor Cards
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-base);
  transition: all var(--transition-bounce);
  border: 3px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto var(--space-lg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.product-name {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-forest);
  margin-bottom: var(--space-sm);
}

.product-description {
  font-size: var(--font-size-base);
  color: var(--color-dark-gray);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.product-benefit {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-success);
  background-color: rgba(92, 107, 62, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}


/* ============================================
   FOOTER - Clean & Informative
   ============================================ */

.footer {
  background-color: var(--color-primary-forest);
  color: var(--color-cream);
  padding: var(--space-4xl) 0 var(--space-xl);
  margin-top: var(--space-6xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-link {
  display: block;
  color: var(--color-cream);
  text-decoration: none;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-secondary-mint);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-light-gray);
  font-size: var(--font-size-sm);
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-base); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }


/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}


/* ============================================
   MODAL STYLES
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-2xl);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-medium-gray);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--color-primary-forest);
  background-color: var(--color-light-gray);
  transform: rotate(90deg);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  body {
    background-color: white;
    color: black;
  }

  .no-print {
    display: none;
  }
}
