/* Tailwind Override CSS - Forces proper loading */

/* Ensure Tailwind processes our custom colors */
.tw-bg-hippynet-primary { background-color: #1E6BFF !important; }
.tw-bg-hippynet-secondary { background-color: #0B1C8C !important; }
.tw-bg-hippynet-tertiary { background-color: #1B3A5F !important; }
.tw-bg-hippynet-dark { background-color: #3C3C3B !important; }
.tw-bg-hippynet-contrast { background-color: #FFD319 !important; }
.tw-bg-hippynet-light { background-color: #F8F9FC !important; }

.tw-text-hippynet-primary { color: #1E6BFF !important; }
.tw-text-hippynet-secondary { color: #0B1C8C !important; }
.tw-text-hippynet-tertiary { color: #1B3A5F !important; }
.tw-text-hippynet-dark { color: #3C3C3B !important; }
.tw-text-hippynet-contrast { color: #FFD319 !important; }

.tw-from-hippynet-primary { --tw-gradient-from: #1E6BFF !important; }
.tw-via-hippynet-secondary { --tw-gradient-via: #0B1C8C !important; }
.tw-to-hippynet-tertiary { --tw-gradient-to: #1B3A5F !important; }

/* Fix gradient backgrounds */
.tw-bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to)) !important;
}

/* Container fixes */
.tw-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .tw-container { max-width: 640px; }
}

@media (min-width: 768px) {
    .tw-container { max-width: 768px; }
}

@media (min-width: 1024px) {
    .tw-container { max-width: 1024px; }
}

@media (min-width: 1280px) {
    .tw-container { max-width: 1280px; }
}

/* Common utility overrides */
.tw-mx-auto { margin-left: auto !important; margin-right: auto !important; }
.tw-px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.tw-py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.tw-text-center { text-align: center !important; }
.tw-text-white { color: white !important; }
.tw-font-bold { font-weight: 700 !important; }
.tw-relative { position: relative !important; }
.tw-absolute { position: absolute !important; }
.tw-inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Flexbox utilities */
.tw-flex { display: flex !important; }
.tw-flex-col { flex-direction: column !important; }
.tw-justify-center { justify-content: center !important; }
.tw-items-center { align-items: center !important; }
.tw-gap-4 { gap: 1rem !important; }

/* Grid utilities */
.tw-grid { display: grid !important; }
.tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.tw-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

/* Text sizes */
.tw-text-5xl { font-size: 3rem !important; line-height: 1 !important; }
.tw-text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.tw-text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.tw-text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.tw-text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.tw-text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.tw-text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }

/* Spacing */
.tw-mb-6 { margin-bottom: 1.5rem !important; }
.tw-mb-8 { margin-bottom: 2rem !important; }
.tw-mb-12 { margin-bottom: 3rem !important; }
.tw-py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.tw-py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.tw-p-6 { padding: 1.5rem !important; }

/* Backgrounds */
.tw-bg-white { background-color: white !important; }
.tw-bg-gray-50 { background-color: #F9FAFB !important; }
.tw-bg-gray-100 { background-color: #F3F4F6 !important; }
.tw-bg-gray-600 { background-color: #4B5563 !important; }
.tw-bg-gray-900 { background-color: #111827 !important; }

/* Borders & Shadows */
.tw-rounded-lg { border-radius: 0.5rem !important; }
.tw-rounded-xl { border-radius: 0.75rem !important; }
.tw-shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; }
.tw-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; }
.tw-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; }

/* Hover states */
.hover\:tw-shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; }
.hover\:tw-scale-105:hover { transform: scale(1.05) !important; }
.hover\:tw-scale-110:hover { transform: scale(1.1) !important; }
.hover\:-tw-translate-y-2:hover { transform: translateY(-0.5rem) !important; }
.hover\:tw-bg-gray-100:hover { background-color: #F3F4F6 !important; }

/* Transitions */
.tw-transition-all {
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
}

.tw-transition-colors {
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
}

.tw-transition-transform {
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
}

/* Responsive utilities */
@media (min-width: 768px) {
    .md\:tw-text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }
    .md\:tw-text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
    .md\:tw-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

@media (min-width: 640px) {
    .sm\:tw-flex-row { flex-direction: row !important; }
}