/* ==========================================================================
   FITOLOGY - UTILITY CLASSES
   ========================================================================== */

/* Glassmorphism Containers */
.glass-panel {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-dark);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
}

/* Typography Gradient Headers */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--text-50) 40%, var(--text-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-coral {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(20, 100%, 55%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Flexbox and Layout Grids */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-layout {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .grid-md-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-md-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Transition Utilities */
.transition-all {
    transition: all var(--transition-base);
}

/* Background levels matching HSL tokens */
.bg-level-900 {
    background-color: var(--bg-900) !important;
}

.bg-level-800 {
    background-color: var(--bg-800) !important;
}

/* Motivational Callout Quote Styling */
.motivational-quote {
    color: var(--text-400);
    font-size: var(--font-lg);
    font-weight: var(--font-weight-light);
    line-height: 1.9 !important;
}
