/* ==========================================================================
   utilities.css — Helper & Utility Classes
   KC INTERPRESS

   Scope: spacing, color helpers, flex/grid helpers, display utils
   ========================================================================== */

/* --------------------------------------------------------------------------
   COLOR UTILITIES
   -------------------------------------------------------------------------- */
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-black  { color: var(--black); }
.text-muted  { color: var(--gray-400); }

.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-dark  { background: var(--black); }
.bg-orange { background: var(--orange); }

/* --------------------------------------------------------------------------
   SPACING UTILITIES
   -------------------------------------------------------------------------- */
.mt-8  { margin-top:    8px;  }
.mt-16 { margin-top:    16px; }
.mt-24 { margin-top:    24px; }
.mt-32 { margin-top:    32px; }
.mt-48 { margin-top:    48px; }

.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* --------------------------------------------------------------------------
   FLEX UTILITIES
   -------------------------------------------------------------------------- */
.flex              { display: flex; }
.flex-center       { display: flex; align-items: center; justify-content: center; }
.flex-between      { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap         { flex-wrap: wrap; }
.flex-col          { flex-direction: column; }
.gap-8             { gap: 8px;  }
.gap-12            { gap: 12px; }
.gap-16            { gap: 16px; }
.gap-24            { gap: 24px; }

.justify-center    { justify-content: center; }
.align-center      { align-items: center; }

/* Shorthand pattern used in pages */
.flex-center-gap {
    display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   DISPLAY UTILITIES
   -------------------------------------------------------------------------- */
.d-none   { display: none; }
.d-block  { display: block; }
.d-flex   { display: flex; }

/* --------------------------------------------------------------------------
   BORDER RADIUS UTILITIES
   -------------------------------------------------------------------------- */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded    { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 9999px; }

/* --------------------------------------------------------------------------
   SHADOW UTILITIES
   -------------------------------------------------------------------------- */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow    { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* --------------------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
.font-bold   { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-light  { font-weight: 300; }
.uppercase   { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.06em; }
