/* Custom Tailwind Color Classes */

/* Background Colors */
.bg-primary { background-color: #F4F3EA; }
.bg-accent { background-color: #01A3BE; }
.bg-highlight { background-color: #DD0215; }
.bg-dark { background-color: #333333; }
.bg-white { background-color: #FFFFFF; }
.bg-black { background-color: #000000; }

/* Text Colors */
.text-primary { color: #F4F3EA; }
.text-accent { color: #01A3BE; }
.text-highlight { color: #DD0215; }
.text-dark { color: #333333; }
.text-white { color: #FFFFFF; }
.text-black { color: #000000; }

/* Border Colors */
.border-primary { border-color: #F4F3EA; }
.border-accent { border-color: #01A3BE; }
.border-highlight { border-color: #DD0215; }
.border-dark { border-color: #333333; }

/* Hover Variants */
.hover\:bg-primary:hover { background-color: #F4F3EA; }
.hover\:bg-accent:hover { background-color: #01A3BE; }
.hover\:bg-highlight:hover { background-color: #DD0215; }
.hover\:bg-dark:hover { background-color: #333333; }

.hover\:text-primary:hover { color: #F4F3EA; }
.hover\:text-accent:hover { color: #01A3BE; }
.hover\:text-highlight:hover { color: #DD0215; }
.hover\:text-dark:hover { color: #333333; }

.hover\:border-primary:hover { border-color: #F4F3EA; }
.hover\:border-accent:hover { border-color: #01A3BE; }
.hover\:border-highlight:hover { border-color: #DD0215; }
.hover\:border-dark:hover { border-color: #333333; }

/* Focus Variants */
.focus\:bg-primary:focus { background-color: #F4F3EA; }
.focus\:bg-accent:focus { background-color: #01A3BE; }
.focus\:bg-highlight:focus { background-color: #DD0215; }
.focus\:bg-dark:focus { background-color: #333333; }

.focus\:text-primary:focus { color: #F4F3EA; }
.focus\:text-accent:focus { color: #01A3BE; }
.focus\:text-highlight:focus { color: #DD0215; }
.focus\:text-dark:focus { color: #333333; }

.focus\:border-primary:focus { border-color: #F4F3EA; }
.focus\:border-accent:focus { border-color: #01A3BE; }
.focus\:border-highlight:focus { border-color: #DD0215; }
.focus\:border-dark:focus { border-color: #333333; }

/* Opacity Variants */
.bg-primary-90 { background-color: rgba(244, 243, 234, 0.9); }
.bg-accent-90 { background-color: rgba(1, 163, 190, 0.9); }
.bg-highlight-90 { background-color: rgba(221, 2, 21, 0.9); }
.bg-dark-90 { background-color: rgba(51, 51, 51, 0.9); }

.bg-primary-80 { background-color: rgba(244, 243, 234, 0.8); }
.bg-accent-80 { background-color: rgba(1, 163, 190, 0.8); }
.bg-highlight-80 { background-color: rgba(221, 2, 21, 0.8); }
.bg-dark-80 { background-color: rgba(51, 51, 51, 0.8); }

.bg-primary-50 { background-color: rgba(244, 243, 234, 0.5); }
.bg-accent-50 { background-color: rgba(1, 163, 190, 0.5); }
.bg-highlight-50 { background-color: rgba(221, 2, 21, 0.5); }
.bg-dark-50 { background-color: rgba(51, 51, 51, 0.5); }

.bg-primary-20 { background-color: rgba(244, 243, 234, 0.2); }
.bg-accent-20 { background-color: rgba(1, 163, 190, 0.2); }
.bg-highlight-20 { background-color: rgba(221, 2, 21, 0.2); }
.bg-dark-20 { background-color: rgba(51, 51, 51, 0.2); }

/* Flex utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Width and height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-auto { width: auto; }
.h-auto { height: auto; }
.w-screen { width: 100vw; }
.h-screen { height: 100vh; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.h-48 { height: 12rem; }

/* Spacing */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.m-4 { margin: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.ml-8 { margin-left: 2rem; }
.mr-auto { margin-right: auto; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

/* Position */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-full { top: 100%; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Borders and Shadows */
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.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-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Max Width */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-xl { max-width: 36rem; }

/* Transitions */
.transition-all { transition-property: all; }
.duration-300 { transition-duration: 300ms; }

/* Object Fit */
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:w-1\/2 { width: 50%; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:ml-8 { margin-left: 2rem; }
  .md\:mr-auto { margin-right: auto; }
  .md\:items-center { align-items: center; }
} 

/* Backdrop Blur */
.backdrop-blur {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Transforms */
.translate-y-0 { transform: translateY(0); }
.-translate-y-full { transform: translateY(-100%); } 