/* Base styles and CSS custom properties */

:root {
  /* Brand Colors */
  --color-primary: #ff6b35;
  --color-secondary: #f7931e;
  --color-accent: #8b5cf6;
  --color-warning: #ffd700;
  --color-dark: #1a1a1a;
  --color-darker: #000000;
  --color-light: #ffffff;
  --color-gray-light: #f8f9fa;
  --color-gray: #e0e0e0;
  --color-text: #333;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
  --gradient-rainbow: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 25%, var(--color-warning) 50%, var(--color-accent) 100%);
  --gradient-light: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-light) 100%);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-brand: 'Audiowide', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --font-handwritten: 'Indie Flower', cursive;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  /* Animation */
  --animation-duration: 0.3s;
  --animation-duration-slow: 0.8s;
  --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Layout */
  --max-width: 1200px;
  --border-radius: 5px;
  --border-radius-lg: 10px;
  --border-radius-xl: 15px;
  --border-radius-2xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 15px 35px rgba(255, 107, 53, 0.3);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Typography */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.section {
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

.section:nth-child(even) {
  background: var(--gradient-light);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

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

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

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

/* Responsive Typography */
@media (max-width: 768px) {
  :root {
    --spacing-4xl: 4rem;
    --spacing-3xl: 3rem;
  }
}