/**
 * Haneen Nemer - Brand Variables
 * Made With Love By HOSSAM ALZYOD - Mr.Server | https://hossam.net | i@hossam.net
 * Tiger Themed Visual Identity
 */

:root {
    /* ===== Colors - Leopard/Tiger Theme ===== */
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8941F;
    --primary-gold-light: #F4D03F;

    --secondary-black: #1a1a1a;
    --secondary-dark: #2c2c2c;
    --secondary-light: #3d3d3d;

    --accent-bronze: #CD7F32;
    --accent-brown: #8B4513;

    --bg-cream: #FFF8E7;
    --bg-light: #FFFBF0;
    --bg-dark: #0d0d0d;

    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-light: #999;
    --text-white: #ffffff;

    /* Tiger Pattern Colors */
    --tiger-stripe: #000000;
    --tiger-base: #D4AF37;

    /* ===== Typography ===== */
    --font-arabic: 'Tajawal', 'Cairo', 'Almarai', sans-serif;
    --font-english: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;

    /* Font Sizes - Mobile First */
    --fs-hero: 2rem;           /* 32px */
    --fs-h1: 1.75rem;          /* 28px */
    --fs-h2: 1.5rem;           /* 24px */
    --fs-h3: 1.25rem;          /* 20px */
    --fs-body: 1rem;           /* 16px */
    --fs-small: 0.875rem;      /* 14px */
    --fs-tiny: 0.75rem;        /* 12px */

    /* Additional Font Sizes */
    --fs-xxlarge: 2rem;        /* 32px */
    --fs-xlarge: 1.5rem;       /* 24px */
    --fs-large: 1.25rem;       /* 20px */
    --fs-base: 1rem;           /* 16px */
    --fs-sm: 0.875rem;         /* 14px */
    --fs-xs: 0.75rem;          /* 12px */
    --fs-2xl: 1.875rem;        /* 30px */
    --fs-xl: 1.25rem;          /* 20px */
    --fs-lg: 1.125rem;         /* 18px */

    /* ===== Spacing - Mobile First ===== */
    --spacing-xs: 0.5rem;      /* 8px */
    --spacing-sm: 1rem;        /* 16px */
    --spacing-md: 1.5rem;      /* 24px */
    --spacing-lg: 2rem;        /* 32px */
    --spacing-xl: 3rem;        /* 48px */
    --spacing-xxl: 4rem;       /* 64px */

    /* Additional Spacing */
    --spacing-1: 0.25rem;      /* 4px */
    --spacing-2: 0.5rem;       /* 8px */
    --spacing-3: 0.75rem;      /* 12px */
    --spacing-4: 1rem;         /* 16px */
    --spacing-5: 1.25rem;      /* 20px */
    --spacing-6: 1.5rem;       /* 24px */
    --spacing-8: 2rem;         /* 32px */
    --spacing-10: 2.5rem;      /* 40px */

    /* ===== Border Radius ===== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* ===== Shadows ===== */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);

    /* ===== Transitions ===== */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* ===== Z-Index ===== */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ===== Desktop Font Sizes ===== */
@media (min-width: 768px) {
    :root {
        --fs-hero: 3.5rem;     /* 56px */
        --fs-h1: 2.5rem;       /* 40px */
        --fs-h2: 2rem;         /* 32px */
        --fs-h3: 1.5rem;       /* 24px */
        --fs-body: 1.125rem;   /* 18px */
    }
}

@media (min-width: 1024px) {
    :root {
        --fs-hero: 4.5rem;     /* 72px */
        --fs-h1: 3rem;         /* 48px */
        --fs-h2: 2.25rem;      /* 36px */

        --spacing-xl: 4rem;    /* 64px */
        --spacing-xxl: 6rem;   /* 96px */
    }
}
