/*
 Theme Name:   TrueTech Group
 Theme URI:    https://truetechgroup.io
 Description:  Custom Astra child theme for TrueTech Group LLC
 Author:       TrueTech Group LLC
 Author URI:   https://truetechgroup.io
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  astra-child
*/

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Disable Astra default header/footer since we use our own */
.ast-header-break-point .main-header-bar {
  display: none !important;
}

/* Fade-in animation for scroll reveals */
.ttg-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.ttg-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
