/**
 * Webflow Client-First Typography System
 * Based on: https://lakshayas-business-websit-29830f6cf62e0.webflow.io/style-guide
 */

/* Heading Classes - Matching Webflow Client-First */
.heading-xxlarge {
  font-size: 4rem; /* 64px */
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-xlarge {
  font-size: 3rem; /* 48px */
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-large {
  font-size: 2rem; /* 32px */
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.heading-medium {
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
  font-weight: 600;
}

.heading-small {
  font-size: 1.25rem; /* 20px */
  line-height: 1.5;
  font-weight: 600;
}

.heading-xsmall {
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
  font-weight: 600;
}

/* Text Size Classes */
.text-size-large {
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
}

.text-size-medium {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
}

.text-size-regular {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
}

.text-size-small {
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
}

.text-size-tiny {
  font-size: 0.75rem; /* 12px */
  line-height: 1.5;
}

/* Text Style Classes */
.text-style-strikethrough {
  text-decoration: line-through;
}

.text-style-italic {
  font-style: italic;
}

.text-style-muted {
  color: #6b7280;
  opacity: 0.7;
}

.text-style-allcaps {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-style-link {
  color: #0a98e5;
  text-decoration: underline;
}

.text-style-link:hover {
  color: #016295;
}

.text-style-quote {
  border-left: 4px solid #0a98e5;
  padding-left: 1rem;
  font-style: italic;
  color: #374151;
}

.text-style-2lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-style-3lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Text Weight Classes */
.text-weight-xbold {
  font-weight: 900;
}

.text-weight-bold {
  font-weight: 700;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-medium {
  font-weight: 500;
}

.text-weight-normal {
  font-weight: 400;
}

.text-weight-light {
  font-weight: 300;
}

/* Text Alignment */
.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

/* Text Colors */
.text-color-grey {
  color: #6b7280;
}

.text-color-black {
  color: #000000;
}

/* Button Classes */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #0a98e5;
  color: white;
  border-radius: 48px;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: #016295;
}

.button-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: white;
  border: 2px solid #0a98e5;
  color: #0a98e5;
  border-radius: 48px;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.button-secondary:hover {
  background-color: #e6f5ff;
}

.button-text {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #0a98e5;
  text-decoration: underline;
  font-weight: 500;
}

.button-text:hover {
  color: #016295;
}

.button.on-blue {
  background-color: white;
  color: #0a98e5;
}

.button.on-blue:hover {
  background-color: #e6f5ff;
}

/* Utility Classes */
.align-center {
  text-align: center;
}

.mobile-center {
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-center {
    text-align: left;
  }
}

.bold {
  font-weight: 700;
}

.no-wrap {
  white-space: nowrap;
}

/* Hero specific classes */
.hero-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero-para {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Subheading classes */
.text-subheading {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
}

.why-sub-para {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
}

.sub-head {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}

/* Category item classes */
.category-item-heading {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}

.category-item-desc {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Testimonial classes */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}

/* Footer classes */
.footer-para {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.footer-heading-h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #000000;
}

.footer-text-link {
  font-size: 1rem;
  color: #6b7280;
  text-decoration: none;
}

.footer-text-link:hover {
  color: #ffffff;
}

