/*
Theme Name: WizSports Modern
Description: A modern, responsive WordPress theme for sports management platforms. Features AI-powered analytics, athlete performance tracking, fan engagement tools, and event management capabilities.
Author: WizSports Team
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wizsports-modern
Tags: sports, analytics, performance, events, responsive, modern, tailwind
*/

/* Tailwind is provided via compiled assets/css/tailwind.css (or CDN in header). */

/* Custom WordPress-specific styles */
.wp-block-image img { max-width: 100%; height: auto; }

.alignwide { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

.alignfull { width: 100%; }

/* WordPress admin bar adjustment */
.admin-bar .fixed {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .fixed {
        top: 46px;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom gradients */
.gradient-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #3730a3 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.gradient-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Custom components */
/* Component classes are implemented in assets/css/tailwind.css */
