/* -------------------------------------------------------------
   PHOENIX LOCAL MARKETING - UTILITIES STYLESHEET
   ------------------------------------------------------------- */

/* 1. Fire Gradient Text Utilities */
.text-gradient-fire {
  background: linear-gradient(135deg, #FFF 20%, var(--primary) 70%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 2. Abstract Geometric Dot Grid Background */
.bg-grid-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* 3. Performance optimizations: hardware acceleration */
.gpu-accelerate {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* 4. Section macro-spacing wrappers */
.section-padding {
  padding-top: 8rem;    /* py-32 equivalent */
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 5rem;  /* py-20 equivalent */
    padding-bottom: 5rem;
  }
}

/* 5. Custom cursor utility helper */
.cursor-pointer-hover {
  cursor: pointer;
}
