/*
Theme Name: FleetOz Theme
Theme URI: http://fleetoz.local
Author: FleetOz Team
Description: Custom WordPress theme for FleetOz - Enterprise Fleet Management Platform
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: fleetoz-theme
*/

/* =============================================
   GLOBAL CUSTOM STYLES
   (from original HTML <style> block)
   ============================================= */

/* Hide scrollbar globally */
::-webkit-scrollbar { display: none; }

/* Smooth scrolling for anchor links */
html { scroll-behavior: smooth; }

/* Shadow offset — used on buttons and cards */
.shadow-offset {
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
}

/* Button hover lift effect */
.btn-hover-effect {
    transition: all 0.2s ease;
}
.btn-hover-effect:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
}

/* Hide scrollbar on industry slider */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* =============================================
   FEATURES PAGE — smooth scroll anchor offset
   Accounts for fixed header (80px) + subnav (56px)
   ============================================= */
.scroll-mt-32 {
    scroll-margin-top: 136px;
}

/* =============================================
   FOR VENDORS PAGE — teal shadow variant
   ============================================= */
.page-for-vendors .shadow-offset {
    box-shadow: 6px 6px 0px 0px rgba(0, 109, 119, 1);
}
.page-for-vendors .btn-hover-effect:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px 0px rgba(0, 109, 119, 1);
}

/* =============================================
   NOTE FOR DEVELOPER:
   This theme uses Tailwind CSS loaded via CDN.
   All layout/spacing/color classes are Tailwind
   utility classes applied directly in HTML.
   For production, replace CDN with compiled build.
   ============================================= */
