/**
 * Tailwind CSS Integration
 * 
 * Tailwind utility classes for modern design patterns
 * Similar to Manjits theme styling approach
 * 
 * @package CafeHospitality
 */

/* Import Tailwind via CDN for development */
/* In production, you can compile Tailwind or use CDN */

/* Tailwind-like utility classes for immediate use */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}
}

@media (min-width: 1280px) {
	.container {
		max-width: 1280px;
	}
}

/* Flex utilities */
.flex {
	display: flex;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-end {
	justify-content: flex-end;
}

.flex-col {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-8 {
	gap: 2rem;
}

.space-x-2 > * + * {
	margin-left: 0.5rem;
}

.space-x-3 > * + * {
	margin-left: 0.75rem;
}

.space-x-4 > * + * {
	margin-left: 1rem;
}

.space-y-4 > * + * {
	margin-top: 1rem;
}

/* Grid utilities */
.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.md\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.md\:flex {
		display: flex;
	}
	.md\:hidden {
		display: none;
	}
	.md\:block {
		display: block;
	}
	.md\:text-2xl {
		font-size: 1.5rem;
	}
	.md\:text-4xl {
		font-size: 2.25rem;
	}
	.md\:text-5xl {
		font-size: 3rem;
	}
	.md\:py-4 {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Positioning */
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.top-0 {
	top: 0;
}

.left-0 {
	left: 0;
}

.right-0 {
	right: 0;
}

.bottom-0 {
	bottom: 0;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.z-10 {
	z-index: 10;
}

.z-50 {
	z-index: 50;
}

/* Spacing */
.p-2 {
	padding: 0.5rem;
}

.p-4 {
	padding: 1rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mt-8 {
	margin-top: 2rem;
}

/* Typography */
.text-center {
	text-align: center;
}

.text-sm {
	font-size: 0.875rem;
}

.text-lg {
	font-size: 1.125rem;
}

.text-xl {
	font-size: 1.25rem;
}

.text-2xl {
	font-size: 1.5rem;
}

.text-4xl {
	font-size: 2.25rem;
}

.text-5xl {
	font-size: 3rem;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.uppercase {
	text-transform: uppercase;
}

.tracking-wide {
	letter-spacing: 0.025em;
}

.tracking-tight {
	letter-spacing: -0.025em;
}

.leading-relaxed {
	line-height: 1.625;
}

.leading-tight {
	line-height: 1.25;
}

/* Colors - Dark theme with yellow accents */
.text-white {
	color: #ffffff;
}

.text-gray-300 {
	color: #d1d5db;
}

.text-gray-400 {
	color: #9ca3af;
}

.text-gray-500 {
	color: #6b7280;
}

.text-gray-900 {
	color: #111827;
}

.text-yellow-400 {
	color: #fbbf24;
}

.text-yellow-500 {
	color: #f59e0b;
}

.hover\:text-yellow-400:hover {
	color: #fbbf24;
}

.hover\:text-yellow-300:hover {
	color: #fde047;
}

/* Backgrounds */
.bg-transparent {
	background-color: transparent;
}

.bg-white {
	background-color: #ffffff;
}

.bg-gray-800 {
	background-color: #1f2937;
}

.bg-gray-900 {
	background-color: #111827;
}

.bg-slate-900 {
	background-color: #0f172a;
}

.bg-yellow-500 {
	background-color: #f59e0b;
}

.bg-yellow-600 {
	background-color: #d97706;
}

.bg-orange-500 {
	background-color: #f97316;
}

.bg-red-600 {
	background-color: #dc2626;
}

.hover\:bg-yellow-600:hover {
	background-color: #d97706;
}

.bg-opacity-60 {
	background-color: rgba(0, 0, 0, 0.6);
}

/* Borders */
.rounded {
	border-radius: 0.25rem;
}

.rounded-lg {
	border-radius: 0.5rem;
}

.rounded-full {
	border-radius: 9999px;
}

/* Shadows */
.shadow-lg {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-md {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Transitions */
.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-colors {
	transition-property: color, background-color, border-color;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.duration-200 {
	transition-duration: 200ms;
}

.duration-300 {
	transition-duration: 300ms;
}

/* Transforms */
.hover\:scale-105:hover {
	transform: scale(1.05);
}

.hover\:scale-110:hover {
	transform: scale(1.1);
}

.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* Display */
.hidden {
	display: none;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline-flex {
	display: inline-flex;
}

/* Overflow */
.overflow-hidden {
	overflow: hidden;
}

.overflow-visible {
	overflow: visible;
}

/* Object fit */
.object-cover {
	object-fit: cover;
}

.object-contain {
	object-fit: contain;
}

.object-center {
	object-position: center;
}

/* Width/Height */
.w-full {
	width: 100%;
}

.h-full {
	height: 100%;
}

.min-h-screen {
	min-height: 100vh;
}

.max-w-2xl {
	max-width: 42rem;
}

.max-w-4xl {
	max-width: 56rem;
}

/* Line clamp */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Truncate */
.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Line through */
.line-through {
	text-decoration-line: line-through;
}

/* Focus */
.focus\:outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}

/* Screen reader */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

