/*
Theme Name: Be Sharp Fitness and Wellness
Theme URI: https://besharpfitness.com
Description: Custom high-performance dark theme inspired by Be Sharp Fitness. Designed with Bebas Neue headings, Inter body typography, yellow accent (#ffd000), and custom GSAP animations.
Version: 1.0.1
Author: Raza Ahmed Khan
Author URI: https://besharpfitness.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-colors, custom-menu, featured-images, full-width-template, translation-ready
Text Domain: be-sharp-fitness

This theme's main styles are loaded via assets/css/main.css to preserve Tailwind output.
*/


/* Custom Vanilla CSS Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Remove bullets from navigation items */
nav ul, nav li, .menu, .menu-item {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}
nav li::before {
    content: none !important;
    display: none !important;
}

