/* Bros Pasta 2025 - Theme Variables */
/* Customize colors, spacing, and animations here */

:root {
  /* === COLORS === */
  /* Primary (Red) */
  --primary-color: #B22222;
  --primary-dark: #8B0000;
  --primary-light: #DC143C;
  
  /* Success (Green) - Used for buttons */
  --success-color: #2ecc71;
  --success-dark: #27ae60;
  --success-light: #3be682;
  
  /* Text Colors */
  --text-dark: #222;
  --text-medium: #666;
  --text-light: #999;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  
  /* Border & Dividers */
  --border-color: #eeeeee;
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 20px;
  
  /* === SHADOWS === */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
  
  /* Button Shadows */
  --shadow-button: 0 4px 12px rgba(46, 204, 113, 0.3);
  --shadow-button-hover: 0 6px 20px rgba(46, 204, 113, 0.4);
  
  /* === SPACING === */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* === TYPOGRAPHY === */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Font Sizes */
  --font-xs: 0.75rem;    /* 12px */
  --font-sm: 0.875rem;   /* 14px */
  --font-base: 1rem;     /* 16px */
  --font-lg: 1.125rem;   /* 18px */
  --font-xl: 1.25rem;    /* 20px */
  --font-2xl: 1.5rem;    /* 24px */
  --font-3xl: 1.75rem;   /* 28px */
  --font-4xl: 2rem;      /* 32px */
  
  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  
  /* === TRANSITIONS === */
  /* Smooth (Apple-style) */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Bounce (Playful) */
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Fast (Micro-interactions) */
  --transition-fast: all 0.15s ease;
  
  /* Slow (Large animations) */
  --transition-slow: all 0.5s ease;
  
  /* Timing Functions */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  
  /* === Z-INDEX === */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 999;
  --z-modal: 1000;
  --z-popover: 1001;
  --z-tooltip: 1002;
  
  /* === COMPONENT SPECIFIC === */
  /* Menu Items */
  --menu-img-height-mobile: 240px;
  --menu-img-height-desktop: 260px;
  --menu-card-radius: var(--border-radius);
  
  /* Buttons */
  --button-padding-y: 14px;
  --button-padding-x: 36px;
  --button-min-width: 180px;
  --button-radius: 12px;
  
  /* Cart */
  --cart-width-mobile: calc(100% - 20px);
  --cart-width-desktop: 400px;
  --cart-max-height: 350px;
  --cart-radius: var(--border-radius);
  
  /* Modal */
  --modal-width-mobile: 95%;
  --modal-width-desktop: 500px;
  --modal-max-height: 85vh;
  --modal-padding-mobile: 24px;
  --modal-padding-desktop: 32px;
  --modal-radius: var(--border-radius-lg);
  --modal-backdrop: rgba(0, 0, 0, 0.6);
  
  /* === BREAKPOINTS (for reference) === */
  /* Use these in media queries */
  /* 
    Mobile: 0-768px
    Tablet: 769px-1024px
    Desktop: 1025px+
  */
}

/* === DARK MODE VARIABLES (Optional) === */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #f8f9fa;
    --text-medium: #adb5bd;
    --text-light: #6c757d;
    --bg-primary: #212529;
    --bg-light: #343a40;
    --border-color: #495057;
  }
}

/* === CUSTOMIZATION EXAMPLES === */

/*
To change the primary color from red to blue:
--primary-color: #0066CC;
--primary-dark: #0052A3;

To make animations faster:
--transition-smooth: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

To increase card hover effect:
In modern-menu.css, change:
transform: translateY(-6px); to transform: translateY(-10px);

To change button gradient:
background: linear-gradient(135deg, #your-color1 0%, #your-color2 100%);
*/
