/* Jungle Bungle Global Variables */
:root {
  /* Brand Colors - Fun, Vibrant, Premium */
  --primary: #FF7B00; /* Vibrant Orange */
  --primary-light: #FFA14A;
  --primary-dark: #DE6B00;
  
  --secondary: #00B67A; /* Jungle Green */
  --secondary-light: #25D399;
  --secondary-dark: #009362;
  
  --accent: #9D4EDD; /* Fun Purple */
  --accent-light: #BB86FC;
  
  --yellow: #FFD166; /* Sunny Yellow */
  --blue: #118AB2; /* Splash Blue */
  --pink: #EF476F; /* Party Pink */

  /* Surface Colors */
  --bg-color: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-alt: #FFF5EC; /* Light orange tint */
  --success-bg: #E6F8F3;
  --warning-bg: #FFF8E6;
  --danger-bg: #FFE5E5;
  
  /* Text Colors */
  --text-main: #2B2D42;
  --text-muted: #6C757D;
  --text-light: #FFFFFF;
  
  /* Borders & Shadows */
  --border-color: #E9ECEF;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-float: 0 15px 30px rgba(255, 123, 0, 0.2);

  /* Typography */
  --font-heading: 'Fredoka', sans-serif; /* Playful */
  --font-body: 'Outfit', sans-serif; /* Clean, modern */

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* WhatsApp */
  --whatsapp-color: #25D366;
}

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

html {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}
