/* Header and Footer specific utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sticky positioning */
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.z-50 {
  z-index: 50;
}
.z-40 {
  z-index: 40;
}

/* Heights */
.h-\[70px\] {
  height: 70px;
}
.h-\[80px\] {
  height: 80px;
}
.top-\[80px\] {
  top: 80px;
}

/* Backdrop and shadows */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.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-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Flex utilities */
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-wrap {
  flex-wrap: wrap;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.5rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1rem;
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1.5rem;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 2rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.625rem;
}

/* Text utilities */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-\[15px\] {
  font-size: 15px;
}
.inline-block {
  display: inline-block;
}
.leading-relaxed {
  line-height: 1.625;
}

/* Border utilities */
.border-t {
  border-top-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-gray-200 {
  border-color: #e5e7eb;
}
.border-gray-700 {
  border-color: #374151;
}
.border-gray-800 {
  border-color: #1f2937;
}

/* Background utilities */
.bg-muted {
  background-color: #f8fafc;
}
.bg-white {
  background-color: #ffffff;
}
.bg-gray-100 {
  background-color: #f3f4f6;
}
.bg-gray-700 {
  background-color: #374151;
}
.bg-gray-800 {
  background-color: #1f2937;
}
.bg-gray-900 {
  background-color: #111827;
}
.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.bg-black\/70 {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Text color utilities */
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-900 {
  color: #111827;
}
.text-blue-600 {
  color: #2563eb;
}
.text-blue-400 {
  color: #60a5fa;
}
.text-muted-foreground {
  color: #6b7280;
}
.text-foreground {
  color: #111827;
}

/* Hover utilities */
.hover\:text-primary:hover {
  color: #d4af37;
}
.hover\:text-blue-600:hover {
  color: #2563eb;
}
.hover\:text-blue-400:hover {
  color: #60a5fa;
}
.hover\:text-gray-500:hover {
  color: #6b7280;
}
.hover\:text-gray-300:hover {
  color: #d1d5db;
}
.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}
.hover\:bg-gray-700:hover {
  background-color: #374151;
}
.hover\:opacity-90:hover {
  opacity: 0.9;
}
.hover\:underline:hover {
  text-decoration: underline;
}

/* Dark mode utilities */
.dark\:bg-gray-900 {
  background-color: #111827;
}
.dark\:bg-gray-800 {
  background-color: #1f2937;
}
.dark\:bg-gray-700 {
  background-color: #374151;
}
.dark\:text-white {
  color: #ffffff;
}
.dark\:text-gray-400 {
  color: #9ca3af;
}
.dark\:text-gray-300 {
  color: #d1d5db;
}
.dark\:text-blue-400 {
  color: #60a5fa;
}
.dark\:text-primary {
  color: #d4af37;
}
.dark\:border-gray-700 {
  border-color: #374151;
}
.dark\:border-gray-800 {
  border-color: #1f2937;
}
.dark\:hover\:text-primary:hover {
  color: #d4af37;
}
.dark\:hover\:text-blue-400:hover {
  color: #60a5fa;
}
.dark\:hover\:text-gray-300:hover {
  color: #d1d5db;
}
.dark\:hover\:bg-gray-700:hover {
  background-color: #374151;
}

/* Position utilities */
.fixed {
  position: fixed;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}

/* Size utilities */
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-10 {
  height: 2.5rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-h-\[calc\(100vh-80px\)\] {
  max-height: calc(100vh - 80px);
}

/* Spacing utilities */
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}

/* Border radius utilities */
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}

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

/* Overflow utilities */
.overflow-y-auto {
  overflow-y: auto;
}

/* Transition utilities */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}

/* Transform utilities */
.group-hover\:rotate-180:hover {
  transform: rotate(180deg);
}
.group-hover\:rotate-180 {
  transition: transform 0.2s ease;
}

/* Opacity utilities */
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}

/* Visibility utilities */
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}

/* Pointer events utilities */
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}

/* Focus utilities */
.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.focus\:fixed:focus {
  position: fixed;
}
.focus\:top-4:focus {
  top: 1rem;
}
.focus\:left-4:focus {
  left: 1rem;
}
.focus\:z-50:focus {
  z-index: 50;
}
.focus\:px-4:focus {
  padding-left: 1rem;
  padding-right: 1rem;
}
.focus\:py-2:focus {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.focus\:bg-white:focus {
  background-color: #ffffff;
}
.focus\:dark\:bg-gray-800:focus {
  background-color: #1f2937;
}
.focus\:text-blue-600:focus {
  color: #2563eb;
}
.focus\:dark\:text-blue-400:focus {
  color: #60a5fa;
}
.focus\:rounded-lg:focus {
  border-radius: 0.5rem;
}
.focus\:shadow-lg:focus {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Screen reader utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gap utilities */
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

/* Grid column span utilities */
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}

/* Text alignment utilities */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

/* Font weight utilities */
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

/* Line height utilities */
.leading-relaxed {
  line-height: 1.625;
}

/* Width utilities */
.w-full {
  width: 100%;
}
.w-auto {
  width: auto;
}

/* Height utilities */
.h-full {
  height: 100%;
}
.h-auto {
  height: auto;
}

/* Min height utilities */
.min-h-screen {
  min-height: 100vh;
}

/* Max width utilities */
.max-w-2xl {
  max-width: 42rem;
}

/* Justify content utilities */
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}

/* Align items utilities */
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}

/* Flex direction utilities */
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}

/* 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));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

/* Border utilities */
.border {
  border-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}

/* Border color utilities */
.border-border {
  border-color: #374151;
}
.border-gray-200 {
  border-color: #374151;
}
.border-gray-700 {
  border-color: #374151;
}
.border-gray-800 {
  border-color: #1f2937;
}

/* Background color utilities */
.bg-background {
  background-color: #111827;
}
.bg-muted {
  background-color: #f8fafc;
}
.bg-white {
  background-color: #ffffff;
}
.bg-gray-100 {
  background-color: #f3f4f6;
}
.bg-gray-700 {
  background-color: #374151;
}
.bg-gray-800 {
  background-color: #1f2937;
}
.bg-gray-900 {
  background-color: #111827;
}

/* Text color utilities */
.text-foreground {
  color: #ffffff;
}
.text-muted-foreground {
  color: #9ca3af;
}
.text-white {
  color: #ffffff;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-900 {
  color: #111827;
}

/* Hover color utilities */
.hover\:text-primary:hover {
  color: #d4af37;
}
.hover\:text-blue-600:hover {
  color: #2563eb;
}
.hover\:text-blue-400:hover {
  color: #60a5fa;
}
.hover\:text-gray-500:hover {
  color: #6b7280;
}
.hover\:text-gray-300:hover {
  color: #d1d5db;
}

/* Hover background utilities */
.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}
.hover\:bg-gray-700:hover {
  background-color: #374151;
}

/* Dark mode text color utilities */
.dark\:text-white {
  color: #ffffff;
}
.dark\:text-gray-400 {
  color: #9ca3af;
}
.dark\:text-gray-300 {
  color: #d1d5db;
}
.dark\:text-blue-400 {
  color: #60a5fa;
}
.dark\:text-primary {
  color: #d4af37;
}

/* Dark mode background utilities */
.dark\:bg-gray-900 {
  background-color: #111827;
}
.dark\:bg-gray-800 {
  background-color: #1f2937;
}
.dark\:bg-gray-700 {
  background-color: #374151;
}

/* Dark mode border utilities */
.dark\:border-gray-700 {
  border-color: #374151;
}
.dark\:border-gray-800 {
  border-color: #1f2937;
}

/* Dark mode hover utilities */
.dark\:hover\:text-primary:hover {
  color: #d4af37;
}
.dark\:hover\:text-blue-400:hover {
  color: #60a5fa;
}
.dark\:hover\:text-gray-300:hover {
  color: #d1d5db;
}
.dark\:hover\:bg-gray-700:hover {
  background-color: #374151;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0;
  }
  .sm\:text-left {
    text-align: left;
  }
  .sm\:text-right {
    text-align: right;
  }
  .sm\:text-center {
    text-align: center;
  }
  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .sm\:gap-8 {
    gap: 2rem;
  }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0;
  }
  .sm\:block {
    display: block;
  }
  .sm\:hidden {
    display: none;
  }
}

@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex {
    display: flex;
  }
  .md\:inline-flex {
    display: inline-flex;
  }
  .md\:block {
    display: block;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-center {
    text-align: center;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .md\:w-\[28rem\] {
    width: 28rem;
  }
  .md\:w-\[48rem\] {
    width: 48rem;
  }
  .md\:w-\[26rem\] {
    width: 26rem;
  }
  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 2rem;
  }
  .md\:h-\[80px\] {
    height: 80px;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
}

/* Card background utilities */
.bg-card {
  background-color: #1e293b;
  border: 1px solid #374151;
}
.bg-card\/50 {
  background-color: rgba(30, 41, 59, 0.5);
}
