
/* ==========================================================================
   DATING SITE CSS — Tailwind Utility Replacement
   Generated for static dating site templates (no build step, no CDN)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -moz-tab-size: 4;
  tab-size: 4;
  line-height: 1.5;
}

body {
  margin: 0;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote {
  margin: 0;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* Summary/details reset */
summary {
  display: list-item;
}

/* sr-only (screen reader only — used for radio peer pattern) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* antialiased */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* --------------------------------------------------------------------------
   2. LAYOUT — Display
   -------------------------------------------------------------------------- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }


/* --------------------------------------------------------------------------
   3. LAYOUT — Position
   -------------------------------------------------------------------------- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }

/* Top */
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-16 { top: 4rem; }
.top-1\/2 { top: 50%; }

/* Right */
.right-0 { right: 0; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }

/* Bottom */
.bottom-0 { bottom: 0; }

/* Left */
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }


/* --------------------------------------------------------------------------
   4. LAYOUT — Overflow
   -------------------------------------------------------------------------- */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }


/* --------------------------------------------------------------------------
   5. FLEXBOX
   -------------------------------------------------------------------------- */
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }

/* Align Items */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }

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

/* Gap */
.gap-0 { gap: 0; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }


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

/* Column Span */
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }


/* --------------------------------------------------------------------------
   7. SPACING — Padding
   -------------------------------------------------------------------------- */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* Padding X */
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

/* Padding Y */
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }

/* Padding Top */
.pt-3 { padding-top: 0.75rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }

/* Padding Bottom */
.pb-1 { padding-bottom: 0.25rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }

/* Padding Left */
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }

/* Padding Right */
.pr-4 { padding-right: 1rem; }
.pr-12 { padding-right: 3rem; }
.pr-36 { padding-right: 9rem; }


/* --------------------------------------------------------------------------
   8. SPACING — Margin
   -------------------------------------------------------------------------- */
.m-0 { margin: 0; }

/* Margin X */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin Y */
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }

/* Margin Top */
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

/* Margin Bottom */
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }


/* --------------------------------------------------------------------------
   9. SPACING — Space Between Children
   -------------------------------------------------------------------------- */
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.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-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }


/* --------------------------------------------------------------------------
   10. SIZING — Width
   -------------------------------------------------------------------------- */
.w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-full { width: 100%; }

/* --------------------------------------------------------------------------
   11. SIZING — Height
   -------------------------------------------------------------------------- */
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }
.h-px { height: 1px; }
.h-1\/2 { height: 50%; }

/* --------------------------------------------------------------------------
   12. SIZING — Min/Max Width & Height
   -------------------------------------------------------------------------- */
.min-h-screen { min-height: 100vh; }
.min-h-\[100vh\] { min-height: 100vh; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }

/* --------------------------------------------------------------------------
   13. SIZING — Aspect Ratio
   -------------------------------------------------------------------------- */
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }


/* --------------------------------------------------------------------------
   14. TYPOGRAPHY — Font Size
   -------------------------------------------------------------------------- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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; }
.text-6xl { font-size: 3.75rem; line-height: 1; }


/* --------------------------------------------------------------------------
   15. TYPOGRAPHY — Font Weight
   -------------------------------------------------------------------------- */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }


/* --------------------------------------------------------------------------
   16. TYPOGRAPHY — Line Height, Letter Spacing, Text Transform
   -------------------------------------------------------------------------- */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-wider { letter-spacing: 0.05em; }
.tracking-wide { letter-spacing: 0.025em; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }


/* --------------------------------------------------------------------------
   17. TYPOGRAPHY — Text Alignment, Decoration, Overflow
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap { white-space: nowrap; }

/* Line Clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* --------------------------------------------------------------------------
   18. COLORS — Text Colors
   -------------------------------------------------------------------------- */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-transparent { color: transparent; }

/* White with opacity */
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* Gray Scale */
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

/* Green */
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }

/* Amber */
.text-amber-400 { color: #fbbf24; }
.text-amber-600 { color: #d97706; }

/* Red */
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }

/* Yellow */
.text-yellow-400 { color: #facc15; }

/* Pink */
.text-pink-400 { color: #f472b6; }

/* Blue */
.text-blue-400 { color: #60a5fa; }

/* text-opacity (for group-hover patterns) */
.text-opacity-80 { --tw-text-opacity: 0.8; }


/* --------------------------------------------------------------------------
   19. COLORS — Background Colors
   -------------------------------------------------------------------------- */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }

/* White with opacity */
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }

/* Black with opacity */
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }

/* Gray */
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }

/* Green */
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-400 { background-color: #4ade80; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-500\/10 { background-color: rgba(34, 197, 94, 0.1); }

/* Red */
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }

/* Amber */
.bg-amber-400 { background-color: #fbbf24; }


/* --------------------------------------------------------------------------
   20. COLORS — Gradients
   -------------------------------------------------------------------------- */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

/* Gradient color stops */
.from-black\/70 {
  --tw-gradient-from: rgba(0, 0, 0, 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/30 {
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.from-gray-900\/90 {
  --tw-gradient-from: rgba(17, 24, 39, 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(17, 24, 39, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-gray-900\/70 {
  --tw-gradient-to: rgba(17, 24, 39, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(17, 24, 39, 0.7) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

/* Default gradient position variables */
*, *::before, *::after {
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
}


/* --------------------------------------------------------------------------
   21. BORDERS
   -------------------------------------------------------------------------- */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }

/* Border colors */
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-100\/80 { border-color: rgba(243, 244, 246, 0.8); }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-800 { border-color: #1f2937; }
.border-green-200 { border-color: #bbf7d0; }
.border-transparent { border-color: transparent; }


/* --------------------------------------------------------------------------
   22. BORDER RADIUS
   -------------------------------------------------------------------------- */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }


/* --------------------------------------------------------------------------
   23. SHADOWS
   -------------------------------------------------------------------------- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }


/* --------------------------------------------------------------------------
   24. OPACITY
   -------------------------------------------------------------------------- */
.opacity-25 { opacity: 0.25; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }


/* --------------------------------------------------------------------------
   25. BACKDROP FILTER
   -------------------------------------------------------------------------- */
.backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.backdrop-blur-md { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }


/* --------------------------------------------------------------------------
   26. OBJECT FIT
   -------------------------------------------------------------------------- */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }


/* --------------------------------------------------------------------------
   27. TRANSITIONS
   -------------------------------------------------------------------------- */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; 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; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Duration */
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }


/* --------------------------------------------------------------------------
   28. TRANSFORMS
   -------------------------------------------------------------------------- */
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }


/* --------------------------------------------------------------------------
   29. CURSOR & INTERACTION
   -------------------------------------------------------------------------- */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; -webkit-user-select: none; }
.appearance-none { appearance: none; -webkit-appearance: none; }
.resize-y { resize: vertical; }


/* --------------------------------------------------------------------------
   30. FILL & STROKE (SVG)
   -------------------------------------------------------------------------- */
.fill-none { fill: none; }
.fill-current { fill: currentColor; }
.fill-currentColor { fill: currentColor; }
.stroke-current { stroke: currentColor; }


/* --------------------------------------------------------------------------
   31. FOCUS STYLES
   -------------------------------------------------------------------------- */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--color-primary, #6366f1); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px var(--color-primary, #6366f1); }


/* --------------------------------------------------------------------------
   32. HOVER STATES
   -------------------------------------------------------------------------- */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-gray-700:hover { background-color: #374151; }

.hover\:text-gray-600:hover { color: #4b5563; }
.hover\:text-gray-700:hover { color: #374151; }
.hover\:text-gray-900:hover { color: #111827; }
.hover\:text-white:hover { color: #ffffff; }

.hover\:underline:hover { text-decoration-line: underline; }

.hover\:opacity-90:hover { opacity: 0.9; }

.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:scale-\[1\.01\]:hover { transform: scale(1.01); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }

.hover\:translate-x-0\.5:hover { transform: translateX(0.125rem); }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }


/* --------------------------------------------------------------------------
   33. GROUP HOVER STATES
   -------------------------------------------------------------------------- */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-0\.5 { transform: translateX(0.125rem); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:text-gray-900 { color: #111827; }
.group:hover .group-hover\:text-opacity-80 { opacity: 0.8; }

/* Group open (details/summary) */
.group-open\:rotate-180 { /* handled by group[open] */ }
details[open] > summary .group-open\:rotate-180,
.group.open .group-open\:rotate-180,
details.group[open] .group-open\:rotate-180 {
  transform: rotate(180deg);
}
/* Also support the group utility variant */
.group:where([open]) .group-open\:rotate-180 {
  transform: rotate(180deg);
}


/* --------------------------------------------------------------------------
   34. PEER STATES (Form radio/checkbox)
   -------------------------------------------------------------------------- */
.peer:checked ~ .peer-checked\:border-transparent { border-color: transparent; }
.peer:checked ~ .peer-checked\:text-white { color: #ffffff; }
.peer:checked ~ .peer-checked\:shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
/* peer-checked background-color is handled inline via JS in the inscription template */


/* --------------------------------------------------------------------------
   35. PLACEHOLDER
   -------------------------------------------------------------------------- */
.placeholder-gray-400::placeholder { color: #9ca3af; }
.placeholder-gray-400::-webkit-input-placeholder { color: #9ca3af; }
.placeholder-gray-400::-moz-placeholder { color: #9ca3af; }


/* --------------------------------------------------------------------------
   36. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}


/* --------------------------------------------------------------------------
   37. SNAP SCROLL
   -------------------------------------------------------------------------- */
.snap-x { scroll-snap-type: x mandatory; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }


/* --------------------------------------------------------------------------
   38. PROSE — Basic typography styling for rendered HTML content
   -------------------------------------------------------------------------- */
.prose {
  color: #374151;
  max-width: 65ch;
  font-size: 1rem;
  line-height: 1.75;
}
.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose h1 {
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
  font-weight: 800;
  color: #111827;
}
.prose h2 {
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
  font-weight: 700;
  color: #111827;
}
.prose h3 {
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
  font-weight: 600;
  color: #111827;
}
.prose h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-weight: 600;
  color: #111827;
}
.prose a {
  color: var(--color-primary, #2563eb);
  text-decoration: underline;
  font-weight: 500;
}
.prose strong {
  font-weight: 700;
  color: #111827;
}
.prose ul {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
  list-style-type: disc;
}
.prose ol {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
  list-style-type: decimal;
}
.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose blockquote {
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
  font-style: italic;
  border-left: 0.25rem solid #e5e7eb;
  color: #6b7280;
}
.prose img {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose code {
  font-size: 0.875em;
  font-weight: 600;
  color: #111827;
}
.prose pre {
  overflow-x: auto;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding: 0.8571429em 1.1428571em;
  background-color: #f3f4f6;
}
.prose hr {
  border-color: #e5e7eb;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose table {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose thead {
  border-bottom-width: 1px;
  border-bottom-color: #d1d5db;
}
.prose thead th {
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
  font-weight: 600;
  color: #111827;
}
.prose tbody tr {
  border-bottom-width: 1px;
  border-bottom-color: #e5e7eb;
}
.prose tbody td {
  vertical-align: baseline;
  padding: 0.5714286em;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg p {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}


/* --------------------------------------------------------------------------
   39. CUSTOM CLASSES — fade-in-up animation
   -------------------------------------------------------------------------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------------
   40. CUSTOM CLASSES — Scrollbar styling
   -------------------------------------------------------------------------- */
.scroll-horizontal::-webkit-scrollbar { height: 6px; }
.scroll-horizontal::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
.scroll-horizontal::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.scroll-horizontal::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
.scroll-horizontal {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}


/* --------------------------------------------------------------------------
   41. CUSTOM CLASSES — Header spacer
   -------------------------------------------------------------------------- */
.header-spacer { height: 64px; }


/* --------------------------------------------------------------------------
   42. GROUP utility class (no visual style, used as parent hover trigger)
   -------------------------------------------------------------------------- */
.group { position: relative; }


/* --------------------------------------------------------------------------
   43. RESPONSIVE — sm: prefix (min-width: 640px)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .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\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }

  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}


/* --------------------------------------------------------------------------
   44. RESPONSIVE — md: prefix (min-width: 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:block { display: block; }
  .md\:inline-flex { display: inline-flex; }

  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }

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

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

  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-14 { gap: 3.5rem; }

  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }

  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-18 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }

  .md\:px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
  .md\:px-16 { padding-left: 4rem; padding-right: 4rem; }

  .md\:w-64 { width: 16rem; }

  .md\:mb-10 { margin-bottom: 2.5rem; }
}


/* --------------------------------------------------------------------------
   45. RESPONSIVE — lg: prefix (min-width: 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .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\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

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

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

  .lg\:py-40 { padding-top: 10rem; padding-bottom: 10rem; }
}


/* --------------------------------------------------------------------------
   46. RESPONSIVE — xl: prefix (min-width: 1280px)
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}


/* --------------------------------------------------------------------------
   47. CARD COMPONENTS — Profile, City, Region, Department, Testimonial
   -------------------------------------------------------------------------- */

/* Profile card — hover lift + shadow + CTA reveal */
.profile-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.group:hover .profile-card {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.18), 0 12px 20px -8px rgba(0,0,0,0.1);
}

/* Profile card CTA — hidden by default, slides up on hover */
.profile-card__cta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.group:hover .profile-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* City card — hover lift */
.city-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.group:hover .city-card {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
}
.group:hover .city-card__arrow svg {
  transform: translateX(3px);
}

/* Region card — hover lift + icon scale */
.region-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.group:hover .region-card {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
}
.group:hover .region-card__icon {
  transform: scale(1.08);
}

/* Department card — hover lift */
.dept-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.group:hover .dept-card {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
}

/* Header buttons — hover glow */
.header-btn-ghost:hover {
  background-color: rgba(0,0,0,0.02);
}
.header-btn-filled:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  transition: all 0.3s ease;
}


/* --------------------------------------------------------------------------
   48. PRINT — Minimal print adjustments
   -------------------------------------------------------------------------- */
@media print {
  .hidden { display: none; }
  body { background: white; color: black; }
}
