/*
 * QUZYN - Provider Theme
 * Date: December 20, 2025
 * Theme: Blue/Green (professional, profit/growth)
 * Target: Provider-facing pages (Chefs & Restaurants)
 */

/* ========================================
 * PWA APP-LIKE BEHAVIOR
 * Disable pull-to-refresh and prevent unwanted gestures
 * ======================================== */

html, body {
    /* Disable pull-to-refresh gesture */
    overscroll-behavior-y: contain;

    /* Prevent text selection on double-tap (app-like) */
    -webkit-user-select: none;
    user-select: none;

    /* Disable touch callout (long-press context menu on images/links) */
    -webkit-touch-callout: none;

    /* Smooth scrolling */
    scroll-behavior: smooth;
}

/* Allow text selection in input fields and textareas */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    user-select: text;
}

/* Prevent zoom on input focus (iOS Safari) */
input, select, textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
}

/* Disable double-tap zoom */
* {
    touch-action: manipulation;
}

:root {
    /* Primary Colors - Dark Blue (Professional) */
    --color-primary: #2c3e50;
    --color-primary-light: rgba(44, 62, 80, 0.1);
    --color-primary-dark: #1a252f;

    --color-secondary: #27ae60;
    --color-secondary-light: rgba(39, 174, 96, 0.1);
    --color-secondary-dark: #229954;

    /* Accent Colors */
    --color-success: #10b981;
    --color-success-light: rgba(16, 185, 129, 0.1);
    --color-success-dark: #059669;

    --color-danger: #ef4444;
    --color-danger-light: rgba(239, 68, 68, 0.1);
    --color-danger-dark: #dc2626;

    --color-warning: #fbbf24;
    --color-warning-light: rgba(251, 191, 36, 0.1);
    --color-warning-dark: #f59e0b;

    --color-info: #3b82f6;
    --color-info-light: rgba(59, 130, 246, 0.1);
    --color-info-dark: #2563eb;

    /* Background Colors */
    --bg-primary: #f9fafb;
    --bg-secondary: #ffffff;
    --bg-muted: #f3f4f6;

    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;

    /* Border */
    --border-color: #d1d5db;
    --border-radius: 8px;
    --border-radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1rem;

    /* Provider-Specific Gradients */
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    --gradient-secondary: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}
