@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap");

:root {
  --color-primary: #ef4444;
  --color-primary-dark: #dc2626;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-gray-50);
}

.font-display {
  font-family: "Playfair Display", serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gray-700);
  padding: 12px 24px;
  border: 2px solid var(--color-gray-300);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-gradient {
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-200) 100%);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Adding Tailwind utilities and custom animations */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

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

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.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));
}

.translate-y-full {
  --tw-translate-y: 100%;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.bg-white\/95 {
  background-color: rgb(255 255 255 / 0.95);
}

.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}

.bg-red-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}

.bg-red-600\/20 {
  background-color: rgb(220 38 38 / 0.2);
}

.bg-neutral-800\/50 {
  background-color: rgb(38 38 38 / 0.5);
}

.border-red-400\/30 {
  border-color: rgb(248 113 113 / 0.3);
}

.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}

/* Grid system */
.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));
}

.lg\:grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.lg\:col-span-5 {
  grid-column: span 5 / span 5;
}

.lg\:col-span-7 {
  grid-column: span 7 / span 7;
}

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

.md\:col-span-3 {
  grid-column: span 3 / span 3;
}

.md\:col-span-6 {
  grid-column: span 6 / span 6;
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex-row {
    flex-direction: row;
  }

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

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* Utility classes */
.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.top-6 {
  top: 1.5rem;
}
.right-6 {
  right: 1.5rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.left-6 {
  left: 1.5rem;
}

.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}

.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}

.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}

.overflow-hidden {
  overflow: hidden;
}
.pointer-events-none {
  pointer-events: none;
}

.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}

.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-t {
  border-top-width: 1px;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}

.text-center {
  text-align: center;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}

/* Color utilities */
.text-white {
  color: rgb(255 255 255);
}
.text-red-400 {
  color: rgb(248 113 113);
}
.text-red-600 {
  color: rgb(220 38 38);
}
.text-neutral-200 {
  color: rgb(229 229 229);
}
.text-neutral-300 {
  color: rgb(212 212 212);
}
.text-neutral-400 {
  color: rgb(163 163 163);
}
.text-neutral-500 {
  color: rgb(115 115 115);
}
.text-neutral-600 {
  color: rgb(82 82 82);
}
.text-neutral-700 {
  color: rgb(64 64 64);
}
.text-neutral-800 {
  color: rgb(38 38 38);
}
.text-neutral-900 {
  color: rgb(23 23 23);
}
.text-yellow-400 {
  color: rgb(250 204 21);
}
.text-green-500 {
  color: rgb(34 197 94);
}

.bg-white {
  background-color: rgb(255 255 255);
}
.bg-red-50 {
  background-color: rgb(254 242 242);
}
.bg-red-100 {
  background-color: rgb(254 226 226);
}
.bg-red-500 {
  background-color: rgb(239 68 68);
}
.bg-red-600 {
  background-color: rgb(220 38 38);
}
.bg-red-700 {
  background-color: rgb(185 28 28);
}
.bg-red-800 {
  background-color: rgb(153 27 27);
}
.bg-neutral-50 {
  background-color: rgb(250 250 250);
}
.bg-neutral-100 {
  background-color: rgb(245 245 245);
}
.bg-neutral-200 {
  background-color: rgb(229 229 229);
}
.bg-neutral-600 {
  background-color: rgb(82 82 82);
}
.bg-neutral-700 {
  background-color: rgb(64 64 64);
}
.bg-neutral-800 {
  background-color: rgb(38 38 38);
}
.bg-neutral-900 {
  background-color: rgb(23 23 23);
}
.bg-gray-50 {
  background-color: rgb(249 250 251);
}
.bg-gray-100 {
  background-color: rgb(243 244 246);
}
.bg-gray-300 {
  background-color: rgb(209 213 219);
}
.bg-gray-600 {
  background-color: rgb(75 85 99);
}
.bg-gray-700 {
  background-color: rgb(55 65 81);
}
.bg-gray-800 {
  background-color: rgb(31 41 55);
}
.bg-green-500 {
  background-color: rgb(34 197 94);
}
.bg-green-600 {
  background-color: rgb(22 163 74);
}

.border-red-200 {
  border-color: rgb(254 202 202);
}
.border-red-400 {
  border-color: rgb(248 113 113);
}
.border-red-600 {
  border-color: rgb(220 38 38);
}
.border-neutral-200 {
  border-color: rgb(229 229 229);
}
.border-neutral-400 {
  border-color: rgb(163 163 163);
}
.border-neutral-600 {
  border-color: rgb(82 82 82);
}
.border-neutral-700 {
  border-color: rgb(64 64 64);
}
.border-neutral-800 {
  border-color: rgb(38 38 38);
}
.border-gray-200 {
  border-color: rgb(229 231 235);
}

/* Hover states */
.hover\:bg-red-700:hover {
  background-color: rgb(185 28 28);
}
.hover\:bg-gray-100:hover {
  background-color: rgb(243 244 246);
}
.hover\:bg-gray-700:hover {
  background-color: rgb(55 65 81);
}
.hover\:bg-green-600:hover {
  background-color: rgb(22 163 74);
}
.hover\:text-red-600:hover {
  color: rgb(220 38 38);
}
.hover\:text-red-400:hover {
  color: rgb(248 113 113);
}
.hover\:text-red-300:hover {
  color: rgb(252 165 165);
}
.hover\:border-red-400:hover {
  border-color: rgb(248 113 113);
}
.hover\:border-neutral-400:hover {
  border-color: rgb(163 163 163);
}

/* Gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-red-50 {
  --tw-gradient-from: rgb(254 242 242);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(254 242 242 / 0));
}
.to-red-100 {
  --tw-gradient-to: rgb(254 226 226);
}
.from-red-600 {
  --tw-gradient-from: rgb(220 38 38);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(220 38 38 / 0));
}
.to-red-800 {
  --tw-gradient-to: rgb(153 27 27);
}
.from-neutral-50 {
  --tw-gradient-from: rgb(250 250 250);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(250 250 250 / 0));
}
.to-neutral-100 {
  --tw-gradient-to: rgb(245 245 245);
}
.from-neutral-700 {
  --tw-gradient-from: rgb(64 64 64);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(64 64 64 / 0));
}
.to-neutral-900 {
  --tw-gradient-to: rgb(23 23 23);
}
.from-neutral-900 {
  --tw-gradient-from: rgb(23 23 23);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(23 23 23 / 0));
}
.via-neutral-800 {
  --tw-gradient-stops: var(--tw-gradient-from), rgb(38 38 38), var(--tw-gradient-to, rgb(38 38 38 / 0));
}
.to-red-900 {
  --tw-gradient-to: rgb(127 29 29);
}

/* Spacing */
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-12 {
  padding: 3rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pb-4 {
  padding-bottom: 1rem;
}

.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}

/* Width and Height */
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-32 {
  width: 8rem;
}
.w-48 {
  width: 12rem;
}

.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-32 {
  height: 8rem;
}
.h-48 {
  height: 12rem;
}

.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .hidden {
    display: none;
  }
  .flex-col {
    flex-direction: column;
  }
}

/* Sticky positioning */
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Text decoration */
.underline {
  text-decoration: underline;
}

/* Font family */
.font-mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
