/* ===================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   Centralized design tokens for the Luckylak theme
   =================================== */

:root {
    /* Brand Colors */
    --primary-color: #175f53;
    --secondary-color: #ffffff;
    --accent-color: #a1cead;
    --active-link: #0b8973;
    --third-color: #f4f1e1;
    --forth-color: #3a3a3c;
    --fifth-color: #ffc107;
    --sixth-color: #999999;

    /* UI Colors */
    --text-color: #3a3a3c;
    --title-color: #175F53;
    --text-muted: #787a80;
    --light-neutral: #f4f1e1;
    --about-us-bg: #f3f1e3;
    --footer-bg: #f9f9f9;
    --footer-bg-color: #f9f9f9;
    --notification-color: #faf5b2;
    --site-notofication-color: #faf5b2;
    --bg-color: #f8f9fa;

    /* System Colors */
    --success: #4caf50;
    --error: #f44336;
    --warning: #ff9800;
    --info: #2196f3;

    /* Typography */
    --font-primary: 'Rubik', 'Segoe UI', Arial, sans-serif;
    --font-secondary: 'Segoe UI', 'Rubik', Arial, sans-serif;
    --primary-font: 'Rubik', 'Segoe UI', Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 60px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 6px 20px rgba(23, 95, 83, 0.3);
    --shadow-xl: 0 10px 30px rgba(23, 95, 83, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container Widths */
    --container-max-width: 1440px;
    --container-responsive-max: 1600px;
    --container-padding: 30px;
}

