/** 
 * VELORIS Tailwind CSS Utilities
 * Compiled Tailwind utilities for all used classes
 */

/* ============================================
   DISPLAY & LAYOUT
   ============================================ */

.block { display: block !important; }
.inline-block { display: inline-block !important; }
.inline { display: inline !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }
.invisible { visibility: hidden !important; }
.antialiased { -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; }

/* Flex Properties */
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.justify-start { justify-content: flex-start !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.items-center { align-items: center !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-12 { gap: 3rem !important; }
.gap-16 { gap: 4rem !important; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-right: 1rem !important; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-right: 1.5rem !important; }
.space-x-12 > :not([hidden]) ~ :not([hidden]) { margin-right: 3rem !important; }

/* ============================================
   GRID
   ============================================ */

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

/* ============================================
   SPACING (Padding)
   ============================================ */

.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-4 { padding: 1rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-32 { padding-top: 8rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-20 { padding-bottom: 5rem !important; }
.pb-32 { padding-bottom: 8rem !important; }
.lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.lg\:pt-32 { padding-top: 8rem !important; }
.lg\:pt-48 { padding-top: 12rem !important; }
.lg\:pb-32 { padding-bottom: 8rem !important; }

/* ============================================
   SPACING (Margin)
   ============================================ */

.m-0 { margin: 0 !important; }
.m-auto { margin: auto !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.ml-0 { margin-left: 0 !important; }
.mtauto { margin-top: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }

/* ============================================
   SIZING
   ============================================ */

.w-auto { width: auto !important; }
.w-full { width: 100% !important; }
.w-4 { width: 1rem !important; }
.w-8 { width: 2rem !important; }
.w-\[1px\] { width: 1px !important; }
.w-96 { width: 24rem !important; }
.h-auto { height: auto !important; }
.h-full { height: 100% !important; }
.h-4 { height: 1rem !important; }
.h-24 { height: 6rem !important; }
.h-96 { height: 24rem !important; }
.h-\[1px\] { height: 1px !important; }
.max-w-full { max-width: 100% !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-7xl { max-width: 80rem !important; }
.max-w-\[140px\] { max-width: 140px !important; }

/* ============================================
   POSITIONING
   ============================================ */

.absolute { position: absolute !important; }
.relative { position: relative !important; }
.fixed { position: fixed !important; }
.static { position: static !important; }
.sticky { position: sticky !important; }
.top-0 { top: 0 !important; }
.top-20 { top: 5rem !important; }
.bottom-0 { bottom: 0 !important; }
.bottom-20 { bottom: 5rem !important; }
.left-0 { left: 0 !important; }
.left-10 { left: 2.5rem !important; }
.right-0 { right: 0 !important; }
.right-20 { right: 5rem !important; }
.right-\[30rem\] { right: 30rem !important; }
.-top-1\.5 { top: -0.375rem !important; }
.-right-1\.5 { right: -0.375rem !important; }

/* ============================================
   Z-INDEX
   ============================================ */

.-z-10 { z-index: -10 !important; }
.-z-20 { z-index: -20 !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }

/* ============================================
   FONT SIZES
   ============================================ */

.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.text-5xl { font-size: 3rem !important; line-height: 1 !important; }
.text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }
.sm\:text-6xl { font-size: 3.75rem !important; }
.lg\:text-\[72px\] { font-size: 72px !important; }

/* ============================================
   FONT WEIGHT
   ============================================ */

.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }

/* ============================================
   TEXT ALIGNMENT
   ============================================ */

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* ============================================
   TEXT COLORS
   ============================================ */

.text-white { color: #fff !important; }
.text-gray-400 { color: #9CA3AF !important; }
.text-gray-500 { color: #6B7280!important; }
.text-\[\#0B0B0C\] { color: #0B0B0C !important; }
.text-\[\#121214\] { color: #121214 !important; }
.text-\[\#C9A96E\] { color: #C9A96E !important; }
.text-\[\#F5F5F5\] { color: #F5F5F5 !important; }

/* ============================================
   BACKGROUND COLORS
   ============================================ */

.bg-transparent { background-color: transparent !important; }
.bg-white { background-color: #fff !important; }
.bg-\[\#0B0B0C\] { background-color: #0B0B0C !important; }
.bg-\[\#121214\] { background-color: #121214 !important; }
.bg-\[\#C9A96E\] { background-color: #C9A96E !important; }
.bg-\[\#F5F5F5\] { background-color: #F5F5F5 !important; }

/* ============================================
   BORDER
   ============================================ */

.border { border: 1px solid currentColor !important; }
.border-t { border-top: 1px solid currentColor !important; }
.border-b { border-bottom: 1px solid currentColor !important; }
.border-l { border-left: 1px solid currentColor !important; }
.border-r { border-right: 1px solid currentColor !important; }
.border-none { border: none !important; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05) !important; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.border-\[\#C9A96E\] { border-color: #C9A96E !important; }
.border-\[\#F5F5F5\] { border-color: #F5F5F5 !important; }

/* ============================================
   BORDER RADIUS
   ============================================ */

.rounded-none { border-radius: 0 !important; }
.rounded-sm { border-radius: 0.125rem !important; }
.rounded { border-radius: 0.375rem !important; }
.rounded-md { border-radius: 0.5rem !important; }
.rounded-lg { border-radius: 0.75rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* ============================================
   OVERFLOW
   ============================================ */

.overflow-auto { overflow: auto !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.overflow-x-hidden { overflow-x: hidden !important; }

/* ============================================
   OPACITY
   ============================================ */

.opacity-0 { opacity: 0 !important; }
.opacity-5 { opacity: 0.05 !important; }
.opacity-7 { opacity: 0.07 !important; }
.opacity-10 { opacity: 0.1 !important; }
.opacity-15 { opacity: 0.15 !important; }
.opacity-20 { opacity: 0.2 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-60 { opacity: 0.6 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

/* ============================================
   TRANSITIONS & ANIMATIONS
   ============================================ */

.transition { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-all { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-colors { transition-property: color, background-color, border-color !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-transform { transition-property: transform !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.duration-150 { transition-duration: 150ms !important; }
.duration-300 { transition-duration: 300ms !important; }
.duration-500 { transition-duration: 500ms !important; }
.duration-700 { transition-duration: 700ms !important; }
.ease { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }

/* ============================================
   TRANSFORMS
   ============================================ */

.scale-100 { --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; }
.scale-105 { --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; }
.scale-110 { --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; }
.translate-x-0 { --tw-translate-x: 0 !important; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) !important; }
.translate-y-0 { --tw-translate-y: 0 !important; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) !important; }
.-translate-y-0\.5 { --tw-translate-y: -0.125rem !important; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) !important; }
.translate-y-40 { --tw-translate-y: 40px !important; }
.grayscale { filter: grayscale(100%) !important; }
.grayscale-0 { filter: grayscale(0) !important; }

/* ============================================
   FILTERS
   ============================================ */

.blur-\[120px\] { filter: blur(120px) !important; }
.blur-\[150px\] { filter: blur(150px) !important; }
.blur-sm { filter: blur(4px) !important; }
.blur { filter: blur(8px) !important; }

/* ============================================
   CURSOR
   ============================================ */

.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }

/* ============================================
   LINE CLAMP
   ============================================ */

.line-clamp-1 { display: -webkit-box !important; -webkit-line-clamp: 1 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
.line-clamp-2 { display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
.line-clamp-3 { display: -webkit-box !important; -webkit-line-clamp: 3 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }

/* ============================================
   PROSE/TEXT STYLES
   ============================================ */

.prose-invert { color-scheme: dark !important; }

/* ============================================
   GROUP HOVER STATES
   ============================================ */

.group:hover .group-hover\:grayscale-0 { filter: grayscale(0) !important; }
.group:hover .group-hover\:scale-105 { --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; transform: scale(var(--tw-scale-x), var(--tw-scale-y)) !important; }
.group:hover .group-hover\:-translate-y-0\.5 { --tw-translate-y: -0.125rem !important; transform: translateY(var(--tw-translate-y)) !important; }
.group:hover .group-hover\:text-\[\#C9A96E\] { color: #C9A96E !important; }

/* ============================================
   HOVER STATES
   ============================================ */

.hover\:text-white:hover { color: #fff !important; }
.hover\:text-\[\#C9A96E\]:hover { color: #C9A96E !important; }
.hover\:text-\[\#F5F5F5\]:hover { color: #F5F5F5 !important; }
.hover\:scale-110:hover { --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; }
.hover\:scale-100:hover { --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; }
.hover\:-translate-y-0\.5:hover { --tw-translate-y: -0.125rem !important; }
.hover\:border-\[\#C9A96E\]:hover { border-color: #C9A96E !important; }
.hover\:shadow-premium:hover { box-shadow: 0 0 30px rgba(201, 169, 110, 0.15) !important; }

/* ============================================
   FOCUS STATES
   ============================================ */

.focus\:outline-none:focus { outline: none !important; }
.focus\:border-\[\#C9A96E\]:focus { border-color: #C9A96E !important; }

/* ============================================
   UTILITIES
   ============================================ */

.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }
.select-none { user-select: none !important; }
.scroll-smooth { scroll-behavior: smooth !important; }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (min-width: 640px) {
	.sm\:flex { display: flex !important; }
	.sm\:flex-row { flex-direction: row !important; }
	.sm\:block { display: block !important; }
	.sm\:items-center { align-items: center !important; }
	.sm\:gap-4 { gap: 1rem !important; }
	.sm\:gap-6 { gap: 1.5rem !important; }
	.sm\:text-6xl { font-size: 3.75rem !important; }
}

@media (min-width: 768px) {
	.md\:flex { display: flex !important; }
	.md\:hidden { display: none !important; }
	.md\:items-center { align-items: center !important; }
	.md\:gap-x-6 { column-gap: 1.5rem !important; }
}

@media (min-width: 1024px) {
	.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
	.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
	.lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
	.lg\:pt-48 { padding-top: 12rem !important; }
	.lg\:pb-32 { padding-bottom: 8rem !important; }
	.lg\:text-\[72px\] { font-size: 72px !important; }
}
