/* ==========================================================================
   Hero Message Component - Sadaf Optometry
   ========================================================================== */

.hero-message {
  text-align: center;
  font-family: var(--font-base);
  padding: 64px 20px;
  background: #fff;
  color: var(--text-main);
  direction: rtl;
}

.hero-message h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw + 0.5rem, 2.85rem);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-message h2 {
  font-family: var(--font-subheading);
  font-size: clamp(1.15rem, 2.2vw + 0.2rem, 1.6rem);
  font-weight: 700;
  color: var(--dark-soft, #2E2E42);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-message p {
  font-family: var(--font-base);
  font-size: clamp(0.95rem, 1.1vw + 0.2rem, 1.15rem);
  color: var(--text-muted, #6B6B7A);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 2.1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius-md, 8px);
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
  transition: var(--transition-fast, all 0.2s ease);
}

.hero-buttons .btn:hover {
  background-color: var(--primary-hover, #b8860b);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.hero-buttons .btn.secondary {
  background-color: transparent;
  color: var(--dark, #1A1A2E);
  border: 1.5px solid var(--border-color, #E6DFD5);
  box-shadow: none;
}

.hero-buttons .btn.secondary:hover {
  background-color: var(--bg-card, #FAF6F0);
  border-color: var(--primary);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-message {
    padding: 38px 16px;
  }
  .hero-message h1 {
    margin-bottom: 8px;
  }
  .hero-message h2 {
    margin-bottom: 14px;
  }
  .hero-message p {
    line-height: 1.85;
    margin-bottom: 22px;
  }
  .hero-buttons {
    gap: 10px;
  }
  .hero-buttons .btn {
    padding: 11px 20px;
    font-size: 13.5px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
