/* ============================================================
   BALI HOLIDAY PACKAGE — CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-pale:     #F5EDD6;
  --teal:          #1A8080;
  --teal-light:    #22A3A3;
  --terracotta:    #C85F2A;
  --green:         #2D5016;
  --green-light:   #4A7C28;

  /* Dark Theme */
  --dark:          #0D1117;
  --dark2:         #141B24;
  --dark3:         #1C2535;
  --dark4:         #232F42;

  /* Text */
  --cream:         #F5EDD6;
  --cream2:        #EFE5C8;
  --text-muted:    rgba(245,237,214,0.5);
  --text-dim:      rgba(245,237,214,0.35);
  --white:         #FDFAF4;

  /* Borders */
  --border-gold:   rgba(201,168,76,0.15);
  --border-gold2:  rgba(201,168,76,0.25);

  /* Fonts */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-script:   'Satisfy', cursive;

  /* Shadows */
  --shadow-card:   0 8px 32px rgba(0,0,0,0.35);
  --shadow-hover:  0 24px 56px rgba(0,0,0,0.5);

  /* Radius */
  --radius:        2px;
  --radius-md:     6px;

  /* Transition */
  --trans:         all 0.3s ease;
}