/*
Theme Name: Okinawa Drone Theme
Theme URI: https://example.com/okinawa-drone-theme
Author: Antigravity
Author URI: https://example.com
Description: Custom WordPress theme converted from React/Vite project for Okinawa Drone.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: okinawa-drone-theme
*/

/* Tailwind CSS will be injected here by the build process if configured to output to this file, 
   or we will enqueue a separate built file. 
   For this setup, we will likely output to a separate file or append here. 
   Let's assume we output to assets/css/style.css or similar, but standard WP themes use style.css. 
   We'll keep this clean for metadata and enqueue the tailwind output separately or build into this.
*/

/* Theme Color Overrides - Matching Logo (Navy Blue) */
:root {
  --theme-primary: #1a365d; /* Navy Blue */
  --theme-primary-hover: #152c4e; /* Darker Navy */
}

.text-blue-600 {
  color: var(--theme-primary) !important;
}

.bg-blue-600 {
  background-color: var(--theme-primary) !important;
}

.hover\:text-blue-600:hover {
  color: var(--theme-primary) !important;
}

.hover\:bg-blue-700:hover {
  background-color: var(--theme-primary-hover) !important;
}

.border-blue-600 {
  border-color: var(--theme-primary) !important;
}
