/* Softkut custom styles – keeps the site feeling hand-crafted */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --brand: #0F766E;
  --brand-dark: #0D5C56;
  --brand-light: #CCFBF1;
  --accent: #F59E0B;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Smooth underline animation for nav links */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--brand);
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Card hover lift */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgb(15 118 110 / 0.15);
}

/* Testimonial quote mark */
.quote-mark::before {
  content: '"';
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-light);
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-family: Georgia, serif;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open {
  max-height: 420px;
}

/* Form focus */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgb(15 118 110 / 0.2);
  border-color: var(--brand);
}

/* Subtle pattern for hero */
.hero-pattern {
  background-image: radial-gradient(circle at 20% 50%, rgba(15, 118, 110, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
}

/* Footer link hover */
.footer-link:hover {
  color: #5EEAD4;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
