/*
Theme Name: Creative TechnoWeb Solutions
Theme URI: https://creativetechnowebsolution.com/
Description: Hello Elementor child theme for Creative TechnoWeb Solutions — light coral/teal brand palette, GSAP-powered custom cursor, page loader and navigation animations, built to be composed with Elementor Free.
Author: Creative TechnoWeb Solutions
Template: hello-elementor
Version: 1.0.0
Text Domain: ctws
*/

:root {
  --bg: #fdfcfa;
  --surface: #ffffff;
  --border: rgba(20, 30, 40, 0.09);
  --ink: #182430;
  --muted: #5b6472;
  --coral: #e8552e;
  --coral-2: #f2935b;
  --teal: #3fb39c;
  --teal-dark: #2a8f7c;
  --tan: #d9c98e;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
}

a {
  color: var(--coral);
}
a:hover {
  color: var(--coral-2);
}

.ctws-gradient-text {
  background: linear-gradient(120deg, var(--coral), var(--coral-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Native cursor is replaced by the custom GSAP cursor on precision-pointer devices only */
@media (pointer: fine) {
  body.ctws-cursor-ready,
  body.ctws-cursor-ready a,
  body.ctws-cursor-ready button,
  body.ctws-cursor-ready [role="button"],
  body.ctws-cursor-ready input,
  body.ctws-cursor-ready textarea {
    cursor: none;
  }
}
