@import "tailwindcss";

@theme {
  --color-brand-blue: #1b63a9;
  --color-brand-purple: #d9a7e1;
  --color-brand-green: #a3d133;
  --color-brand-blue-dark: #154d85;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
}

/* Custom range input styling for better mobile touch */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: #1b63a9;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 4px 10px -2px rgb(0 0 0 / 0.2);
}

input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: #1b63a9;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 4px 10px -2px rgb(0 0 0 / 0.2);
}

/* Animations and Transitions */
.hover-lift {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Calendly Container fix */
.calendly-inline-widget-container {
  min-height: 700px;
}

/* Better typography on mobile */
@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
  }
  
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Custom button states */
.btn-primary {
  @apply bg-brand-blue text-white font-bold transition-all active:scale-95;
}

.btn-secondary {
  @apply bg-white border border-slate-200 text-slate-900 font-bold transition-all active:scale-95 hover:border-brand-blue;
}

