/* Base Styles */
:root {
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --green-500: #13a749;
  --green-600: #16a34a;
  --blue-400: #60a5fa;
  --blue-500: #1769B8;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --purple-500: #7d14db;
  --purple-600: #9333ea;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --orange-50: #fff7ed;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --cyan-400: #26c5dd;
}

@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  line-height: 1.5;
}
.mr-10 {
  margin-right: 2.5rem;
}
.text-left {
  text-align: left;
}

.font-script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-1 {
  flex: 1 1 0%;
}

.text-center {
  text-align: center;
}

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

.font-semibold {
  font-weight: 600;
}

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

.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-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.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-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.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-12 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.-mt-12 {
  margin-top: -3rem;
}

.-mt-16 {
  margin-top: -4rem;
}

.-mt-24 {
  margin-top: -6rem;
}

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

.gap-12 {
  gap: 3rem;
}

.space-x-8>*+* {
  margin-left: 2rem;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.w-80-percent {
  width: 80%;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-10 {
  width: 2.5rem;
}

.w-14 {
  width: 3rem
}

.w-64 {
  width: 16rem;
}

.w-full {
  width: 100%;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 6rem;
}

.h-64 {
  height: 16rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.max-w-4xl {
  max-width: 56rem;
}

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

.rounded-none {
  border-radius: 0;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.border-0 {
  border-width: 0;
}

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

.overflow-hidden {
  overflow: hidden;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.object-cover {
  object-fit: cover;
}

.italic {
  font-style: italic;
}

/* Colors */
.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.bg-gray-500 {
  background-color: var(--gray-500);
}

.bg-gray-800 {
  background-color: var(--gray-800);
}

.bg-pink-500 {
  background-color: var(--pink-500);
}

.bg-pink-600 {
  background-color: var(--pink-600);
}

.bg-green-500 {
  background-color: var(--green-500);
}

.bg-blue-400 {
  background-color: var(--blue-400);
}

.bg-blue-500 {
  background-color: var(--blue-500);
}

.bg-blue-600 {
  background-color: var(--blue-600);
}

.bg-blue-700 {
  background-color: var(--blue-700);
}

.bg-purple-500 {
  background-color: var(--purple-500);
}

.bg-purple-600 {
  background-color: var(--purple-600);
}

.bg-orange-50 {
  background-color: var(--orange-50);
}

.bg-cyan-400 {
  background-color: var(--cyan-400);
}

/* Background utilities */
.bg-contain {
  background-size: contain;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.min-h-screen {
  min-height: 100vh;
}

/* Height utilities */
.h-2\.5 {
  height: 0.625rem;
}

/* Position utilities */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.text-white {
  color: white;
}

.text-gray-500 {
  color: var(--gray-500);
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-gray-800 {
  color: var(--gray-800);
}

.text-pink-500 {
  color: var(--pink-500);
}

.text-green-500 {
  color: var(--green-500);
}

.text-blue-500 {
  color: var(--blue-500);
}

/* Gradients */
.bg-gradient-to-br.from-gray-100.to-gray-200 {
  background-image: linear-gradient(to bottom right, var(--gray-100), var(--gray-200));
}

.bg-gradient-to-br.from-orange-200.to-orange-300 {
  background-image: linear-gradient(to bottom right, var(--orange-200), var(--orange-300));
}

.bg-gradient-to-br.from-blue-200.to-blue-300 {
  background-image: linear-gradient(to bottom right, var(--blue-400), var(--blue-600));
}

.bg-gradient-to-br.from-pink-200.to-pink-300 {
  background-image: linear-gradient(to bottom right, #f9a8d4, #f472b6);
}

.bg-gradient-to-br.from-green-200.to-green-300 {
  background-image: linear-gradient(to bottom right, #86efac, #4ade80);
}

.bg-gradient-to-r.from-pink-500.via-green-500.via-blue-600.to-purple-600 {
  background-image: linear-gradient(to right, var(--pink-500), var(--green-500), var(--blue-600), var(--purple-600));
}

/* Components */
.card {
  display: flex;
  flex-direction: column;
}

.card-content {
  flex: 1;
}

button {
  cursor: pointer;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s;
}

button.hover-bg-green-600:hover {
  background-color: var(--green-600);
}

button.hover-bg-pink-600:hover {
  background-color: var(--pink-600);
}

button.hover-bg-blue-600:hover {
  background-color: var(--blue-600);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

a.hover-text-pink-500:hover {
  color: var(--pink-500);
}

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

/* Responsive */
@media (min-width: 768px) {
  .md-flex-row {
    flex-direction: row;
  }

  /* width: 50% */
  .md-w-1\/2 {
    width: 50%;
  }

  .md-flex {
    display: flex;
  }

  .md-text-left {
    text-align: left;
  }

  .md-text-right {
    text-align: right;
  }

  .md-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .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-justify-end {
    justify-content: flex-end;
  }

  .md-text-5xl {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg-flex-row {
    flex-direction: row;
  }

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

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

  .lg-w-1-3 {
    width: 33.333333%;
  }

  .lg-w-2-3 {
    width: 66.666667%;
  }

  .lg-text-6xl {
    font-size: 3.75rem;
  }
}

.self-center {
  align-self: center;
}