/* Base Button Styles */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;

  padding: 0.85rem 1.6rem;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  cursor: pointer;

  border: none;
  text-decoration: none;

  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;

  /* subtle depth (key Apple trait) */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Focus styles (accessibility) */
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); /* subtle custom focus ring */

  outline: none;
  border: none;
}

/* Primary Button */
.btn-primary {
  letter-spacing: 1.2px;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.95);
  color: #111;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Secondary Button */
.btn-secondary {
  letter-spacing: 1.2px;
  font-family: var(--font-body);
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}