/* CSS Custom Properties - WeGo Cleaning Website */
:root {
    /* Primary Colors */
    --primary-teal: #2DD4BF;
    --primary-teal-dark: #14B8A6;
    --primary-gradient: linear-gradient(135deg, #2DD4BF 0%, #10B981 100%);

    /* Neutral Colors */
    --navy: #1E3A5F;
    --gray-dark: #374151;
    --gray-medium: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Breakpoints (for reference, used in responsive.css) */
    /* --bp-mobile: 320px */
    /* --bp-tablet: 768px */
    /* --bp-desktop: 1024px */
    /* --bp-wide: 1440px */

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;

    /* Semantic Colors */
    --color-error: #EF4444;
    --color-success: #10B981;
    --color-star: #F59E0B;

    /* External Brand Colors */
    --color-whatsapp: #25D366;

    /* Extended Neutrals */
    --navy-dark: #111827;

    /* Extended Spacing */
    --space-4xl: 5rem;

    /* Extended Font Weights */
    --fw-semibold: 600;
}
