/* Hero CTA Button - Terracotta gradient */
.btn-hero-cta {
  position: relative;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3) !important;
  transition: all 0.3s ease !important;
  background: linear-gradient(135deg, #d4a574, #c4956a) !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
}

.btn-hero-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4) !important;
  color: white !important;
}

.btn-hero-cta:active {
  transform: translateY(0) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .btn-hero-cta {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    width: 100%;
  }
}

/* Focus for accessibility */
.btn-hero-cta:focus {
  outline: 3px solid rgba(212, 165, 116, 0.4) !important;
  outline-offset: 2px !important;
}
