/* ============================================
   BOSCO HEALTH — Home Page Styles
   ============================================ */

.home-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 1.2rem;
}


.home-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}

.home-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.home-tagline {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 520px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ── FEATURE CARDS ── */
.home-card-title {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    margin-top: 3rem;
}
.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.home-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
}

.home-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.home-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.home-card p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── APP STORE SECTION ── */
.app-store-section {
  text-align: center;
  padding: 2.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-top: 3rem;
}

.app-store-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.app-store-section p {
  color: var(--mid);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.app-badge:hover {
  opacity: 0.8;
}

.app-badge span {
  font-size: 1.2rem;
}

.app-coming-soon {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--soft);
}