/* Tailwind CSS - Compiled for HTML version */
/* Using system fonts for fast loading - no external font import */

/* Mental Wellness Collective Color Scheme */
:root {
  --primary: #0D7377;
  --primary-hover: #14A085;
  --background: #F5F5F0;
  --text-dark: #2C3E50;
  --border: #D4D4D0;
  --success: #2E8B57;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-display: swap;
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text-dark);
  line-height: 1.5;
}

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

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

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

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

.bg-white {
  background: #fff;
}

.bg-gray-50 {
  background: #f9fafb;
}

.bg-gray-100 {
  background: #f3f4f6;
}

.bg-gray-900 {
  background: #111827;
}

/* Teal/Professional Blue color scheme */
.bg-blue-50 {
  background: #e0f7f5; /* Light teal background */
}

.bg-blue-100 {
  background: #b2e8e4; /* Lighter teal */
}

.bg-blue-600 {
  background: var(--primary); /* Primary teal */
}

.bg-green-50 {
  background: #f0fdf4;
}

.bg-green-100 {
  background: #dcfce7;
}

.bg-red-50 {
  background: #fef2f2;
}

.bg-red-100 {
  background: #fee2e2;
}

.bg-purple-50 {
  background: #faf5ff;
}

.bg-purple-100 {
  background: #f3e8ff;
}

.bg-orange-50 {
  background: #fff7ed;
}

.bg-orange-100 {
  background: #fed7aa;
}

.bg-indigo-50 {
  background: #eef2ff;
}

.bg-indigo-100 {
  background: #e0e7ff;
}

.bg-pink-50 {
  background: #fdf2f8;
}

.bg-pink-100 {
  background: #fce7f3;
}

.bg-gradient-to-br {
  background: linear-gradient(135deg, #e0f7f5, #b2e8e4);
}

.bg-gradient-to-r {
  background: linear-gradient(to right, var(--primary), var(--primary-hover));
}

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

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

.text-white {
  color: #fff;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-900 {
  color: #111827;
}


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

.text-blue-700 {
  color: var(--primary-hover);
}

.text-green-600 {
  color: #16a34a;
}

.text-green-800 {
  color: #166534;
}

.text-red-600 {
  color: #dc2626;
}

.text-purple-600 {
  color: #9333ea;
}

.text-orange-600 {
  color: #ea580c;
}

.text-indigo-600 {
  color: #4f46e5;
}

.text-pink-600 {
  color: #db2777;
}

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

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

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

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

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

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

.mb-16 {
  margin-bottom: 4rem;
}

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

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

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

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

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

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

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

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

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

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

.w-full {
  width: 100%;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

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

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

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

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

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

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

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

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

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

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

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

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

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

.rounded-xl {
  border-radius: 0.75rem;
}

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

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

.border {
  border: 1px solid;
}

.border-2 {
  border-width: 2px;
}

.border-t {
  border-top: 1px solid;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-gray-800 {
  border-color: #1f2937;
}

.border-blue-200 {
  border-color: #bfdbfe;
}

.border-blue-400 {
  border-color: #60a5fa;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-green-300 {
  border-color: #86efac;
}

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

.hover\:bg-blue-700:hover {
  background: var(--primary-hover);
}

.hover\:bg-blue-50:hover {
  background: #e0f7f5;
}

.hover\:text-blue-600:hover {
  color: var(--primary);
}

.hover\:text-blue-700:hover {
  color: var(--primary-hover);
}

.hover\:text-white:hover {
  color: #fff;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.transition-colors {
  transition: background-color 0.15s ease;
}

.transition-all {
  transition: all 0.2s ease;
}

.duration-200 {
  transition-duration: 200ms;
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.focus\:ring-blue-500:focus {
  --tw-ring-color: var(--primary);
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

/* Custom radio button styling */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

input[type="radio"]:checked {
  border-color: #6b7280;
  background-color: #6b7280;
}

input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
}

input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

input[type="radio"]:hover {
  border-color: #9ca3af;
}

/* Form styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(13, 115, 119, 0.1);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive design */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  
  .sm\:text-lg {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .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\:text-2xl {
    font-size: 1.5rem;
  }
  
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
  }
}

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

/* Transform utilities */
.transform {
  transform: translateZ(0);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.scale-105 {
  transform: scale(1.05);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-top-4 {
  top: -1rem;
}

.left-1\/2 {
  left: 50%;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

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

.z-10 {
  z-index: 10;
}

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

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

/* Additional utilities */
.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.text-decoration-none {
  text-decoration: none;
}

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

.underline {
  text-decoration: underline;
}

.list-disc {
  list-style-type: disc;
}

.ml-4 {
  margin-left: 1rem;
}

/* Custom component styles */
.cta-primary {
  background: var(--primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  min-height: 48px;
}

.cta-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-decoration: none;
}

.cta-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: .5rem 2rem !important;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  min-height: 48px;
}

.cta-secondary:hover {
  background: #e0f7f5;
  color: var(--primary);
  text-decoration: none;
}

.cta-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-md {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.cta-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Most Popular Badge */
.most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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