/*
Theme Name: Jimenez Consulting Pro
Theme URI: 
Author: Jimenez Consulting
Author URI: 
Description: Custom WordPress theme based on "The Architectural Ledger" design system. Built with Tailwind v3.
Version: 3.0.2
Text Domain: jimenez-consulting-pro
*/

/* --- THE ARCHITECTURAL LEDGER: GLOBAL STYLE TOKENS --- */

/* Native Fonts & Symbols */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
    color: #b09b5a; /* Muted Gold */
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(248, 249, 252, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Tonal Elevation (No-Line Rule) */
.ghost-border {
    border: 1px solid rgba(219, 192, 192, 0.15); /* outline-variant @ 15% opacity */
}

.ghost-border:focus-within {
    border-color: #7e5711; /* Gold Accent on Focus */
    box-shadow: 0 0 0 4px rgba(122, 35, 46, 0.05); /* Subtle Burgundy Glow */
}

/* Editorial Depth */
.editorial-shadow {
    box-shadow: 0 12px 40px rgba(122, 35, 46, 0.06); /* Burgundy-tinted ambient shadow */
}

/* Interactive Elements */
.btn-hover-burgundy:hover {
    background-color: #40000c; /* Deep Burgundy */
    box-shadow: 0 8px 24px rgba(64, 0, 12, 0.2);
    transform: translateY(-2px);
}

.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide scrollbar for carousel */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Dashboard & Portal Specifics */
.step-active { color: #7e5711; }
.step-line-active { background-color: #7e5711; }

.font-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

/* --- High-Fidelity Animations --- */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-in-from-top { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slide-in-from-bottom { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slide-in-from-left { from { transform: translateX(-30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slide-in-from-right { from { transform: translateX(30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes bounce-subtle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.animate-in { 
    animation-fill-mode: both; 
    animation-duration: 700ms; 
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 
}
.fade-in { animation-name: fade-in; }
.slide-in-from-top { animation-name: slide-in-from-top; }
.slide-in-from-bottom { animation-name: slide-in-from-bottom; }
.slide-in-from-left { animation-name: slide-in-from-left; }
.slide-in-from-right { animation-name: slide-in-from-right; }
.animate-bounce-subtle { animation: bounce-subtle 4s ease-in-out infinite; }

