/* =========================================
   HILOTHAI1688 - CSS VARIABLES
   Theme: Luxury Black & Gold
   Mobile First
========================================= */

:root {

  /* =========================================
     PRIMARY COLORS
  ========================================= */

  --color-primary: #D4AF37;
  --color-primary-light: #FFD76A;
  --color-primary-dark: #A67C00;

  --color-gold: #D4AF37;
  --color-gold-light: #F8D66D;
  --color-gold-dark: #8F6B00;


  /* =========================================
     BACKGROUND COLORS
  ========================================= */

  --color-bg: #080808;
  --color-bg-dark: #050505;
  --color-bg-soft: #101010;
  --color-bg-card: #151515;
  --color-bg-light: #1C1C1C;

  --color-header-bg: linear-gradient(
    135deg,
    #050505 0%,
    #111111 50%,
    #1A1A1A 100%
  );

  --color-bottom-nav-bg: rgba(8, 8, 8, 0.98);


  /* =========================================
     TEXT COLORS
  ========================================= */

  --color-text: #FFFFFF;
  --color-text-secondary: #D0D0D0;
  --color-text-muted: #8A8A8A;
  --color-text-dark: #050505;

  --color-heading: #FFFFFF;


  /* =========================================
     BORDER COLORS
  ========================================= */

  --color-border: #252525;
  --color-border-light: #333333;
  --color-border-gold: #D4AF37;


  /* =========================================
     GRADIENTS
  ========================================= */

  --gradient-gold: linear-gradient(
    135deg,
    #8F6B00 0%,
    #D4AF37 35%,
    #FFD76A 60%,
    #B8860B 100%
  );

  --gradient-gold-button: linear-gradient(
    135deg,
    #F7C948 0%,
    #FFD76A 45%,
    #D99A16 100%
  );

  --gradient-dark: linear-gradient(
    135deg,
    #050505 0%,
    #101010 50%,
    #181818 100%
  );

  --gradient-card: linear-gradient(
    145deg,
    #181818 0%,
    #0C0C0C 100%
  );


  /* =========================================
     TYPOGRAPHY
  ========================================= */

  --font-primary:
    "Noto Sans Thai",
    "Prompt",
    "Tahoma",
    Arial,
    sans-serif;

  --font-heading:
    "Prompt",
    "Noto Sans Thai",
    sans-serif;


  /* Font Sizes */

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-hero: 3rem;


  /* Font Weight */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;


  /* Line Height */

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;


  /* =========================================
     SPACING
  ========================================= */

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;


  /* =========================================
     CONTAINER
  ========================================= */

  --container-width: 1200px;

  --container-padding-mobile: 20px;
  --container-padding-tablet: 30px;
  --container-padding-desktop: 40px;


  /* =========================================
     BORDER RADIUS
  ========================================= */

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;


  /* =========================================
     SHADOWS
  ========================================= */

  --shadow-sm:
    0 2px 8px rgba(0, 0, 0, 0.25);

  --shadow-md:
    0 8px 24px rgba(0, 0, 0, 0.4);

  --shadow-lg:
    0 15px 40px rgba(0, 0, 0, 0.6);

  --shadow-gold:
    0 0 20px rgba(212, 175, 55, 0.25);

  --shadow-gold-strong:
    0 0 30px rgba(212, 175, 55, 0.45);


  /* =========================================
     HEADER
  ========================================= */

  --header-height: 72px;


  /* =========================================
     BUTTON
  ========================================= */

  --button-height: 60px;

  --button-radius: 16px;


  /* =========================================
     BOTTOM NAVIGATION
  ========================================= */

  --bottom-nav-height: 75px;

  --bottom-nav-z-index: 1000;


  /* =========================================
     TRANSITIONS
  ========================================= */

  --transition-fast: 0.2s ease;

  --transition-normal: 0.3s ease;

  --transition-slow: 0.5s ease;


  /* =========================================
     Z-INDEX
  ========================================= */

  --z-header: 100;

  --z-menu: 500;

  --z-bottom-nav: 1000;

  --z-modal: 2000;

}