/*
Theme Name: Sitech Educational Technology
Description: A modern WordPress theme for educational technology e-commerce, built with Gutenberg, HTMX, Tailwind CSS, and Alpine.js. Features custom product management, interactive components, and seamless WooCommerce integration.
Version: 1.0.1
Author: Sitech Systems
Text Domain: sitech
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: MIT
License URI: https://opensource.org/licenses/MIT
Tags: e-commerce, education, technology, woocommerce, gutenberg, responsive, modern
*/

/* This file is required by WordPress but styles are handled by Tailwind CSS */

/* Site-wide Font Family */
* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Tailwind Dark Mode Site-wide */
html {
    color-scheme: dark;
}

body {
    @apply bg-gray-900 text-gray-100;
}

/* Force dark mode for all elements */
.bg-white {
    @apply bg-gray-800 !important;
}

.text-gray-900 {
    @apply text-gray-100 !important;
}

.text-black {
    @apply text-white !important;
}

.border-gray-200 {
    @apply border-gray-700 !important;
}

.border-gray-300 {
    @apply border-gray-600 !important;
}

/* Custom CSS Overrides */
.py-4 {
    padding-top: 0;
    padding-bottom: 0;
}

.inset-0 {
    inset: -10px;
}

.pt-32 {
    margin-top: 6rem;
}
