/* 
  L&A Painting & Maintenance 
  Design System Variables
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  /* Colors */
  --primary-color: #00A7B7;
  /* Teal/Green used for highlights and buttons */
  --primary-hover: #2ca2b2;

  --bg-dark: #29322e;
  /* Dark slate background for "Why Choose Us" */
  --bg-dark-card: #313b37;
  /* Slightly lighter dark background for cards */
  --bg-hero: #252c29;
  /* Very dark greenish background for Hero */
  --bg-light: #f6f8f7;
  /* Light grayish background for "About" and "Gallery" */
  --bg-white: #ffffff;
  /* White background for main content and cards */

  --text-primary: #111111;
  /* Dark text for headings */
  --text-body: #5a635e;
  /* Muted text for paragraphs */
  --text-light: #ffffff;
  /* White text for dark sections */
  --text-muted-light: #a4b0ab;
  /* Muted text for dark sections */

  --accent-gold: #ceab75;
  /* Gold color for stars in reviews */
  --border-color: #eaeaea;
  /* Subtle border color */
  --border-color-dark: #3a4540;
  /* Border color for dark sections */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 1rem;
  /* 16px */
  --spacing-md: 2rem;
  /* 32px */
  --spacing-lg: 4rem;
  /* 64px */
  --spacing-xl: 8rem;
  /* 128px */

  /* Layout */
  --container-width: 1200px;
  --container-padding: 2rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 12px 32px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}