/* Tailwind CSS Base + Utilities — AL BARK */

/* Base reset */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; }
body { margin: 0; line-height: inherit; }
hr { height: 0; color: inherit; border-top-width: 1px; }
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
code, kbd, samp, pre { font-family: ui-monospace, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -.25em; } sup { top: -.5em; }
table { text-indent: 0; border-color: inherit; border-collapse: collapse; }
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; }
:-moz-focusring { outline: auto; }
:-moz-ui-invalid { box-shadow: none; }
progress { vertical-align: baseline; }
::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; }
[type='search'] { -webkit-appearance: textfield; outline-offset: -2px; }
::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
summary { display: list-item; }
blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre { margin: 0; }
fieldset { margin: 0; padding: 0; }
legend { padding: 0; }
ol, ul, menu { list-style: none; margin: 0; padding: 0; }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { opacity: 1; color: #9ca3af; }
button, [role="button"] { cursor: pointer; }
:disabled { cursor: default; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
[hidden] { display: none; }

/* ── LAYOUT ── */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.table { display: table; }

/* Flex */
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-2\.5 { gap: .625rem; }
.gap-3 { gap: .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; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* 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)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Position */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-1\.5 { top: .375rem; }
.right-1\.5 { right: .375rem; }
.-top-1 { top: -.25rem; }
.-right-1 { right: -.25rem; }

/* Z-index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-99 { z-index: 99; }
.z-100 { z-index: 100; }

/* ── SIZING ── */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-px { width: 1px; }
.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-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-px { height: 1px; }
.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-18 { height: 4.5rem; }
.h-20 { height: 5rem; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.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-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* ── SPACING ── */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .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; }
.ml-1 { margin-left: .25rem; }
.ml-2 { margin-left: .5rem; }
.mr-2 { margin-right: .5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: .75rem; padding-right: .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; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.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-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.pl-4 { padding-left: 1rem; }
.pr-4 { padding-right: 1rem; }
.pt-6 { padding-top: 1.5rem; }

/* ── TYPOGRAPHY ── */
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .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; }
.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; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.underline { text-decoration-line: underline; }
.line-through { text-decoration-line: line-through; }

/* ── COLORS ── */
.text-white { color: #fff; }
.text-black { color: #000; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-red-500 { color: #ef4444; }
.text-green-600 { color: #16a34a; }

/* CSS Variable text colors */
.text-\[var\(--navy-900\)\] { color: var(--navy-900); }
.text-\[var\(--navy-800\)\] { color: var(--navy-800); }
.text-\[var\(--navy-700\)\] { color: var(--navy-700); }
.text-\[var\(--green-700\)\] { color: var(--green-700); }
.text-\[var\(--green-600\)\] { color: var(--green-600); }
.text-\[var\(--green-500\)\] { color: var(--green-500); }
.text-\[var\(--green-400\)\] { color: var(--green-400); }
.text-\[var\(--green-300\)\] { color: var(--green-300); }
.text-\[var\(--amber-400\)\] { color: var(--amber-400); }
.text-\[var\(--amber-300\)\] { color: var(--amber-300); }
.text-\[var\(--slate\)\] { color: var(--slate); }
.text-\[var\(--slate-light\)\] { color: var(--slate-light); }

/* White opacity text */
.text-white\/20 { color: rgba(255,255,255,.20); }
.text-white\/30 { color: rgba(255,255,255,.30); }
.text-white\/50 { color: rgba(255,255,255,.50); }
.text-white\/60 { color: rgba(255,255,255,.60); }
.text-white\/70 { color: rgba(255,255,255,.70); }
.text-white\/80 { color: rgba(255,255,255,.80); }
.text-white\/90 { color: rgba(255,255,255,.90); }

/* Background colors */
.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-\[var\(--navy-900\)\] { background-color: var(--navy-900); }
.bg-\[var\(--navy-800\)\] { background-color: var(--navy-800); }
.bg-\[var\(--green-600\)\] { background-color: var(--green-600); }
.bg-\[var\(--green-500\)\] { background-color: var(--green-500); }
.bg-\[var\(--green-400\)\] { background-color: var(--green-400); }
.bg-\[var\(--amber-400\)\] { background-color: var(--amber-400); }
.bg-\[var\(--amber-500\)\] { background-color: var(--amber-500); }
.bg-\[var\(--surface\)\] { background-color: var(--surface); }
.bg-\[\#f8fafc\] { background-color: #f8fafc; }
.bg-\[\#F8FAFF\] { background-color: #F8FAFF; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-white\/5  { background-color: rgba(255,255,255,.05); }
.bg-white\/10 { background-color: rgba(255,255,255,.10); }
.bg-white\/15 { background-color: rgba(255,255,255,.15); }
.bg-white\/20 { background-color: rgba(255,255,255,.20); }

/* Border colors */
.border-\[var\(--line\)\]     { border-color: var(--line); }
.border-\[var\(--green-500\)\]{ border-color: var(--green-500); }
.border-\[var\(--green-600\)\]{ border-color: var(--green-600); }
.border-\[var\(--navy-900\)\] { border-color: var(--navy-900); }
.border-white\/10 { border-color: rgba(255,255,255,.10); }
.border-white\/20 { border-color: rgba(255,255,255,.20); }
.border-white\/30 { border-color: rgba(255,255,255,.30); }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-0 { border-width: 0; }

/* ── CUSTOM FONT SIZES ── */
.text-\[0\.6rem\]   { font-size: .6rem; }
.text-\[0\.62rem\]  { font-size: .62rem; }
.text-\[0\.65rem\]  { font-size: .65rem; }
.text-\[0\.7rem\]   { font-size: .7rem; }
.text-\[0\.72rem\]  { font-size: .72rem; }
.text-\[0\.78rem\]  { font-size: .78rem; }
.text-\[0\.8rem\]   { font-size: .8rem; }
.text-\[0\.83rem\]  { font-size: .83rem; }
.text-\[0\.9rem\]   { font-size: .9rem; }
.text-\[1\.05rem\]  { font-size: 1.05rem; }
.text-\[1\.125rem\] { font-size: 1.125rem; }

/* ── EFFECTS ── */
.rounded { border-radius: .25rem; }
.rounded-md { border-radius: .375rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.shadow-xl { box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: .5; }
.opacity-100 { opacity: 1; }

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

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }

/* Misc */
.resize-none { resize: none; }
.select-none { user-select: none; }
.list-none { list-style: none; }

/* ── HOVER STATES ── */
.hover\:text-white:hover { color: #fff; }
.hover\:text-\[var\(--navy-900\)\]:hover { color: var(--navy-900); }
.hover\:text-\[var\(--green-600\)\]:hover { color: var(--green-600); }
.hover\:text-\[var\(--green-700\)\]:hover { color: var(--green-700); }
.hover\:text-\[var\(--green-400\)\]:hover { color: var(--green-400); }
.hover\:border-\[var\(--green-500\)\]:hover { border-color: var(--green-500); }
.hover\:border-\[var\(--green-600\)\]:hover { border-color: var(--green-600); }
.hover\:bg-\[var\(--green-600\)\]:hover { background-color: var(--green-600); }
.hover\:bg-\[var\(--green-700\)\]:hover { background-color: var(--green-700); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255,255,255,.2); }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[var\(--green-500\)\]:focus { border-color: var(--green-500); }

/* ── TRANSITIONS ── */
.transition-all { transition-property: all; transition-duration: .15s; transition-timing-function: cubic-bezier(.4,0,.2,1); }
.transition { transition-property: color,background-color,border-color,transform,opacity; transition-duration: .15s; transition-timing-function: cubic-bezier(.4,0,.2,1); }
.duration-200 { transition-duration: .2s; }
.duration-300 { transition-duration: .3s; }
.transform { --tw-translate-x:0; --tw-translate-y:0; --tw-rotate:0; --tw-scale-x:1; --tw-scale-y:1; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.rotate-180 { transform: rotate(180deg); }

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid { display: grid; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:flex-row { flex-direction: row; }
  .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-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-\[0\.83rem\] { font-size: .83rem; }
  .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .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\:hidden { display: none; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .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\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

/* ── RESPONSIVE GRIDS & DISPLAY (escaped backslash) ── */
@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\:flex-row { flex-direction: row; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-3xl { font-size: 1.875rem; }
  .sm\:text-xl  { font-size: 1.25rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .sm\:p-8  { padding: 2rem; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:text-\[0\.83rem\] { font-size: .83rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-sm  { font-size: .875rem; }
}
@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block  { display: block; }
  .lg\:flex   { display: flex; }
  .lg\:inline-flex { display: inline-flex; }
  .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\:col-span-2  { grid-column: span 2 / span 2; }
  .lg\:col-span-3  { grid-column: span 3 / span 3; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:px-8   { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20  { padding-top: 5rem; padding-bottom: 5rem; }
}
