/*
 * homepage-tw.css
 * Local replacement for Tailwind CDN utilities used on index.html.
 * All classes use the tw- prefix to match the original tailwind.config.
 *
 * Custom colors from tailwind.config:
 *   navy:      #0B1F3A
 *   navy-mid:  #122845
 *   navy-dark: #060F1E
 *   gold:      #C9A84C
 *   gold-muted: rgba(201,168,76,0.4)
 */

/* ===== LAYOUT / POSITIONING ===== */
.tw-relative  { position: relative; }
.tw-absolute  { position: absolute; }
.tw-inset-0   { top: 0; right: 0; bottom: 0; left: 0; }
.tw-top-0     { top: 0; }
.tw-bottom-0  { bottom: 0; }
.tw-left-0    { left: 0; }
.tw-right-0   { right: 0; }
.tw-z-0       { z-index: 0; }
.tw-z-10      { z-index: 10; }

/* ===== DISPLAY ===== */
.tw-flex       { display: flex; }
.tw-inline-flex { display: inline-flex; }
.tw-grid       { display: grid; }
.tw-hidden     { display: none; }
.tw-block      { display: block; }

/* ===== FLEXBOX ===== */
.tw-flex-col   { flex-direction: column; }
.tw-flex-wrap  { flex-wrap: wrap; }
.tw-flex-1     { flex: 1 1 0%; }
.tw-items-center   { align-items: center; }
.tw-justify-center { justify-content: center; }

/* ===== GRID ===== */
.tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ===== ORDER ===== */
.tw-order-1 { order: 1; }
.tw-order-2 { order: 2; }

/* ===== SPACING — margin ===== */
.tw-mx-auto { margin-left: auto; margin-right: auto; }
.tw-mb-0\.5 { margin-bottom: 0.125rem; }
.tw-mb-1    { margin-bottom: 0.25rem; }
.tw-mb-3    { margin-bottom: 0.75rem; }
.tw-mb-4    { margin-bottom: 1rem; }
.tw-mb-6    { margin-bottom: 1.5rem; }
.tw-mb-8    { margin-bottom: 2rem; }
.tw-mb-10   { margin-bottom: 2.5rem; }
.tw-mb-12   { margin-bottom: 3rem; }
.tw-mb-16   { margin-bottom: 4rem; }
.tw-mt-0\.5 { margin-top: 0.125rem; }
.tw-mt-4    { margin-top: 1rem; }
.tw-mt-8    { margin-top: 2rem; }
.tw-mt-20   { margin-top: 5rem; }
.tw-mt-auto { margin-top: auto; }

/* ===== SPACING — padding ===== */
.tw-p-5  { padding: 1.25rem; }
.tw-p-8  { padding: 2rem; }
.tw-px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.tw-px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.tw-px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.tw-py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.tw-py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.tw-py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.tw-py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.tw-pt-32 { padding-top: 8rem; }
.tw-pb-20 { padding-bottom: 5rem; }
.tw-pl-5  { padding-left: 1.25rem; }

/* ===== GAP ===== */
.tw-gap-2   { gap: 0.5rem; }
.tw-gap-4   { gap: 1rem; }
.tw-gap-6   { gap: 1.5rem; }
.tw-gap-8   { gap: 2rem; }
.tw-gap-12  { gap: 3rem; }
.tw-gap-x-6 { column-gap: 1.5rem; }
.tw-gap-y-2 { row-gap: 0.5rem; }

/* ===== SIZING ===== */
.tw-w-full  { width: 100%; }
.tw-h-full  { height: 100%; }
.tw-h-auto  { height: auto; }
.tw-h-1     { height: 0.25rem; }
.tw-h-px    { height: 1px; }
.tw-max-w-2xl      { max-width: 42rem; }
.tw-max-w-\[1200px\] { max-width: 1200px; }
.tw-min-h-\[90vh\]   { min-height: 90vh; }
.tw-aspect-\[2\/3\]  { aspect-ratio: 2/3; }

/* ===== OVERFLOW ===== */
.tw-overflow-hidden { overflow: hidden; }

/* ===== TYPOGRAPHY ===== */
.tw-text-xs   { font-size: 0.75rem; line-height: 1rem; }
.tw-text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.tw-text-base { font-size: 1rem; line-height: 1.5rem; }
.tw-text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.tw-text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
.tw-text-2xl  { font-size: 1.5rem; line-height: 2rem; }
.tw-text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.tw-text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
.tw-text-\[11px\] { font-size: 11px; }

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

.tw-italic     { font-style: italic; }
.tw-not-italic { font-style: normal; }
.tw-uppercase  { text-transform: uppercase; }

.tw-leading-\[1\.1\] { line-height: 1.1; }
.tw-leading-snug     { line-height: 1.375; }
.tw-leading-relaxed  { line-height: 1.625; }

.tw-tracking-wider        { letter-spacing: 0.05em; }
.tw-tracking-\[0\.2em\]   { letter-spacing: 0.2em; }

.tw-text-center    { text-align: center; }
.tw-whitespace-nowrap { white-space: nowrap; }

/* ===== TEXT COLORS ===== */
.tw-text-white     { color: #ffffff; }
.tw-text-gold      { color: #C9A84C; }
.tw-text-navy      { color: #0B1F3A; }
.tw-text-gray-300  { color: #d1d5db; }
.tw-text-gray-400  { color: #9ca3af; }
.tw-text-gray-500  { color: #6b7280; }
.tw-text-gray-600  { color: #4b5563; }

/* ===== BACKGROUNDS ===== */
.tw-bg-white     { background-color: #ffffff; }
.tw-bg-navy      { background-color: #0B1F3A; }
.tw-bg-navy-dark { background-color: #060F1E; }
.tw-bg-gold\/10  { background-color: rgba(201,168,76,0.1); }

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

.tw-border-gold       { border-color: #C9A84C; }
.tw-border-white\/10  { border-color: rgba(255,255,255,0.1); }
.tw-border-white\/20  { border-color: rgba(255,255,255,0.2); }

/* ===== BORDER RADIUS ===== */
.tw-rounded      { border-radius: 0.25rem; }
.tw-rounded-lg   { border-radius: 0.5rem; }
.tw-rounded-full { border-radius: 9999px; }

/* ===== OBJECT-FIT / OBJECT-POSITION ===== */
.tw-object-cover { object-fit: cover; }
.tw-object-top   { object-position: top; }

/* ===== TRANSITIONS ===== */
.tw-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; }
.tw-transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.tw-duration-200 { transition-duration: 200ms; }
.tw-duration-300 { transition-duration: 300ms; }

/* ===== GROUP ===== */
.tw-group { /* marker class — no styles needed */ }

/* ===== HOVER VARIANTS ===== */
.hover\:tw-underline:hover           { text-decoration: underline; }
.hover\:tw-text-gold:hover           { color: #C9A84C; }
.hover\:tw-border-gold:hover         { border-color: #C9A84C; }
.hover\:tw-border-gold\/40:hover     { border-color: rgba(201,168,76,0.4); }

/* group-hover (used on team images) */
.tw-group:hover .group-hover\:tw-scale-\[1\.03\] { transform: scale(1.03); }

/* ===== sm: RESPONSIVE (min-width: 640px) ===== */
@media (min-width: 640px) {
  .sm\:tw-block    { display: block; }
  .sm\:tw-flex-row { flex-direction: row; }
  .sm\:tw-text-5xl { font-size: 3rem; line-height: 1; }
}

/* ===== md: RESPONSIVE (min-width: 768px) ===== */
@media (min-width: 768px) {
  .md\:tw-px-8       { padding-left: 2rem; padding-right: 2rem; }
  .md\:tw-py-10      { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:tw-py-28      { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:tw-pt-40      { padding-top: 10rem; }
  .md\:tw-pb-28      { padding-bottom: 7rem; }
  .md\:tw-p-10       { padding: 2.5rem; }
  .md\:tw-text-lg    { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:tw-text-2xl   { font-size: 1.5rem; line-height: 2rem; }
  .md\:tw-text-3xl   { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:tw-text-4xl   { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:tw-text-6xl   { font-size: 3.75rem; line-height: 1; }
  .md\:tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:tw-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:tw-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ===== lg: RESPONSIVE (min-width: 1024px) ===== */
@media (min-width: 1024px) {
  .lg\:tw-text-7xl    { font-size: 4.5rem; line-height: 1; }
  .lg\:tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:tw-grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:tw-gap-20      { gap: 5rem; }
  .lg\:tw-order-1     { order: 1; }
  .lg\:tw-order-2     { order: 2; }
}
