:root {
  /* Colors */
  --color-primary: #4aa4eb;
  --color-primary-dark: #2980b9;
  --color-secondary: #FF8C00;
  --color-secondary-dark: #E67E00;
  --color-accent: rgba(180, 167, 116, 0.8);
  --color-success: #28a745;
  --color-success-dark: #218838;
  --color-text: #333;
  --color-text-light: #555;
  --color-text-gray: #979597;
  --color-text-dark: #454545;
  --color-background: #f7f7f7;
  --color-background-light: #f9f9f9;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-border: #ddd;
  --color-border-light: #e0e0e0;
  --color-border-lighter: #e8e8e8;
  
  /* CTA Colors */
  --color-cta-bg: rgba(28, 150, 237, 0.85);
  --color-cta-offer: #FF8C00;
  
  /* Header Colors */
  --color-header-bg: rgba(0, 0, 0, 0.95);
  
  /* Typography */
  --font-family-primary: 'Cinzel', serif;
  --font-size-base: 16px;
  --font-size-large: 18px;
  --font-size-xlarge: 20px;
  --font-size-hero-title: 5em;
  --font-size-hero-subtitle: 1.8em;
  --font-size-section-title: 2.5em;
  --font-size-cta-offer: 3.2em;
  --font-size-cta-btn: 1.2em;
  --font-size-form-header: 1.8em;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;
  --spacing-xxxl: 60px;
  
  /* Layout */
  --container-max-width: 1200px;
  --hero-max-width: 1400px;
  --header-height: 110px;
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 10px;
  --border-radius-lg: 12px;
  --border-radius-xl: 15px;
  --border-radius-xxl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 10px 30px rgba(0,0,0,0.3);
  --shadow-header: 0 2px 20px rgba(0, 0, 0, 0.1);
  --shadow-cta: 0 10px 40px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.4s ease-out;
  
  /* Z-index */
  --z-header: 1000;
  --z-hero-overlay: 1;
  --z-hero-content: 2;
  --z-popup: 10000;
  
  /* Backdrop Filters */
  --backdrop-blur: blur(10px);
  --backdrop-blur-strong: blur(20px);
}

/* Responsive breakpoints - for reference in media queries */
/* Mobile: 0-768px */
/* Tablet: 769-1024px */
/* Desktop: 1025px+ */
