/*
Theme Name: Lush Charters Miami
Theme URI: https://lushchartersmiami.com/
Author: Antigravity AI
Author URI: https://deepmind.google/
Description: Premium Custom Theme for Lush Charters Miami, featuring a sophisticated dark UI and high-end aesthetics based on Stitch AI designs.
Version: 1.0.0
License: All rights reserved
Text Domain: lushchartersmiami
*/

/* 
=============================================================================
TAILWIND INTEGRATION (Via CDN for Simple 1-File Theme without Build Step)
=============================================================================
Note to User: Since we are using simple "copy-paste" directly in File Manager
without a local build step (Node/NPM), we will pull Tailwind via CDN in the 
header.php. 

This style.css handles the pure WordPress requirements and any custom 
CSS overrides that Tailwind cannot handle directly.
=============================================================================
*/

:root {
    --color-primary: #0b50da;
    --color-accent-gold: #d4af37;
    --color-background-light: #f5f6f8;
    --color-background-dark: #0a0e17;
    --font-display: "Plus Jakarta Sans", sans-serif;
    --font-sans: "Plus Jakarta Sans", sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background-dark);
    color: #f1f5f9;
    /* slate-100 */
}

/* Material Symbols Font Setup */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.fill-1 {
    font-variation-settings: 'FILL' 1;
}

/* Glassmorphism Classes for our UI */
.glass-panel {
    background: rgba(16, 22, 34, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}