@import "tailwindcss";

@layer base {
	html {
		scroll-behavior: smooth;
	}
}

@theme {
	--color-black-50: #000000;
	--color-black-100: #000000;
	--color-black-200: #000000;
	--color-black-300: #000000;
	--color-black-400: #000000;
	--color-black-500: #000000;
	--color-black-600: #000000;
	--color-black-700: #000000;
	--color-black-800: #000000;
	--color-black-900: #000000;
	--color-black-950: #000000;

	--color-white-50: #ffffff;
	--color-white-100: #ffffff;
	--color-white-200: #ffffff;
	--color-white-300: #ffffff;
	--color-white-400: #ffffff;
	--color-white-500: #ffffff;
	--color-white-600: #ffffff;
	--color-white-700: #ffffff;
	--color-white-800: #ffffff;
	--color-white-900: #ffffff;
	--color-white-950: #ffffff;

	--color-orange-50: #fff2e5;
	--color-orange-100: #ffe6cc;
	--color-orange-200: #ffcc99;
	--color-orange-300: #ffb366;
	--color-orange-400: #ff9933;
	--color-orange-500: #ff8000;
	--color-orange-600: #cc6600;
	--color-orange-700: #994c00;
	--color-orange-800: #663300;
	--color-orange-900: #331a00;
	--color-orange-950: #241200;

	--color-lime-cream-50: #f7ffe5;
	--color-lime-cream-100: #f0ffcc;
	--color-lime-cream-200: #e0ff99;
	--color-lime-cream-300: #d1ff66;
	--color-lime-cream-400: #c2ff33;
	--color-lime-cream-500: #b2ff00;
	--color-lime-cream-600: #8fcc00;
	--color-lime-cream-700: #6b9900;
	--color-lime-cream-800: #476600;
	--color-lime-cream-900: #243300;
	--color-lime-cream-950: #192400;

	--color-turf-green-50: #edf7f2;
	--color-turf-green-100: #dbf0e6;
	--color-turf-green-200: #b7e1cc;
	--color-turf-green-300: #93d2b3;
	--color-turf-green-400: #6fc399;
	--color-turf-green-500: #4bb480;
	--color-turf-green-600: #3c9066;
	--color-turf-green-700: #2d6c4d;
	--color-turf-green-800: #1e4833;
	--color-turf-green-900: #0f241a;
	--color-turf-green-950: #0b1912;
}

/* === FOOTER STYLES === */
.footer-grid {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,.06);
	margin-bottom: 2rem;
}
.footer-brand .logo {
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 700;
	display: block;
	margin-bottom: .4rem;
}
.footer-brand p {
	font-size: .88rem;
	color: rgba(255,255,255,.4);
	font-weight: 300;
	line-height: 1.72;
	margin-top: .65rem;
	max-width: 240px;
}
.social-row {
	display: flex;
	gap: .55rem;
	margin-top: 1.25rem;
}
.social-btn {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255,255,255,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color .2s;
}
.social-btn:hover {
	border-color: var(--color-turf-green-500, #4bb480);
}
.social-btn svg {
	color: rgba(255,255,255,.4);
}
.footer-col h4 {
	font-family: 'DM Sans', sans-serif;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: rgba(255,255,255,.9);
	margin-bottom: .9rem;
}
.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .55rem;
	margin: 0;
	padding: 0;
}
.footer-col a {
	color: rgba(255,255,255,.45);
	font-size: .88rem;
	font-weight: 300;
	transition: color .2s;
}
.footer-col a:hover {
	color: var(--color-turf-green-500, #4bb480);
}
.footer-bottom {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.28);
	font-size: .82rem;
}
.footer-bottom p {
	font-size: .82rem;
	color: rgba(255,255,255,.18);
}
.footer-bottom a {
	font-size: .82rem;
	color: rgba(255,255,255,.18);
	transition: color .2s;
}
.footer-bottom a:hover {
	color: rgba(255,255,255,.4);
}

/* === FAB FOOTER WIDGET === */
.ts-widget{font-family:Inter, 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial}
.ts-widget .floating-tab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,#22a26b,#1a8a5a);
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(24,64,42,0.28);
  border: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  animation: ts-float 6s ease-in-out infinite;
}
.ts-widget .floating-tab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 36px rgba(24,64,42,0.32);
}
.fab-icon { font-size: 2.2rem; font-weight: bold; }

.ts-widget .widget-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 100000;
  background: rgba(0,0,0,0.32);
  align-items: center;
  justify-content: center;
}
.ts-widget .widget-modal.open {
  display: flex;
}
.fab-modal-inner {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 12px 48px rgba(24,64,42,0.18);
  text-align: center;
}
.fab-modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.fab-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fab-action {
  background: #f5f7fb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a8a5a;
  cursor: pointer;
  transition: background .18s, border .18s;
}
.fab-action:hover {
  background: #e6f5ee;
  border-color: #22a26b;
  color: #22a26b;
}
.widget-modal .wp-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  color: #888;
  cursor: pointer;
}
@keyframes ts-float {0%{transform:translateY(0)}50%{transform:translateY(-6px)}100%{transform:translateY(0)}}
@media (max-width:520px){
  .fab-modal-inner{min-width:0;padding:1.2rem 0.5rem;}
  .ts-widget .floating-tab{right:14px;bottom:14px;width:48px;height:48px;font-size:1.6rem;}
}
